Skip to content

Commit

Permalink
Merge pull request #244 from appwrite/feat-rebrand
Browse files Browse the repository at this point in the history
Feat: Motto rebrand
  • Loading branch information
christyjacob4 authored Oct 17, 2023
2 parents 954c0c0 + d7e4ecf commit 9248f50
Show file tree
Hide file tree
Showing 26 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion bun/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion bun/starter/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async ({ req, res, log, error }: any) => {

// `res.json()` is a handy helper for sending JSON
return res.json({
motto: "Build Fast. Scale Big. All in One Place.",
motto: "Build like a team of hundreds_",
learn: "https://appwrite.io/docs",
connect: "https://appwrite.io/discord",
getInspired: "https://builtwith.appwrite.io",
Expand Down
2 changes: 1 addition & 1 deletion cpp/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion cpp/starter/src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace runtime {

// `context.res.json()` is a handy helper for sending JSON
Json::Value response;
response["motto"] = "Build Fast. Scale Big. All in One Place.";
response["motto"] = "Build like a team of hundreds_";
response["learn"] = "https://appwrite.io/docs";
response["connect"] = "https://appwrite.io/discord";
response["getInspired"] = "https://builtwith.appwrite.io";
Expand Down
2 changes: 1 addition & 1 deletion dart/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion dart/starter/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Future<dynamic> main(final context) async {

// `res.json()` is a handy helper for sending JSON
return context.res.json({
'motto': 'Build Fast. Scale Big. All in One Place.',
'motto': 'Build like a team of hundreds_',
'learn': 'https://appwrite.io/docs',
'connect': 'https://appwrite.io/discord',
'getInspired': 'https://builtwith.appwrite.io',
Expand Down
2 changes: 1 addition & 1 deletion deno/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion deno/starter/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async ({ req, res, log, error }: any) => {

// `res.json()` is a handy helper for sending JSON
return res.json({
motto: "Build Fast. Scale Big. All in One Place.",
motto: "Build like a team of hundreds_",
learn: "https://appwrite.io/docs",
connect: "https://appwrite.io/discord",
getInspired: "https://builtwith.appwrite.io",
Expand Down
2 changes: 1 addition & 1 deletion dotnet/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion dotnet/starter/src/Index.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public async Task<RuntimeOutput> Main(RuntimeContext Context)
// `Context.Res.Json()` is a handy helper for sending JSON
return Context.Res.Json(new Dictionary<string, object?>()
{
{ "motto", "Build Fast. Scale Big. All in One Place." },
{ "motto", "Build like a team of hundreds_" },
{ "learn", "https://appwrite.io/docs" },
{ "connect", "https://appwrite.io/discord" },
{ "getInspired", "https://builtwith.appwrite.io" },
Expand Down
2 changes: 1 addition & 1 deletion java/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion java/starter/src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public RuntimeOutput main(RuntimeContext context) throws Exception {
}

Map<String, Object> json = new HashMap<>();
json.put("motto", "Build Fast. Scale Big. All in One Place.");
json.put("motto", "Build like a team of hundreds_");
json.put("learn", "https://appwrite.io/docs");
json.put("connect", "https://appwrite.io/discord");
json.put("getInspired", "https://builtwith.appwrite.io");
Expand Down
2 changes: 1 addition & 1 deletion kotlin/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion kotlin/starter/src/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Main {

// `context.res.json()` is a handy helper for sending JSON
return context.res.json(mutableMapOf(
"motto" to "Build Fast. Scale Big. All in One Place.",
"motto" to "Build like a team of hundreds_",
"learn" to "https://appwrite.io/docs",
"connect" to "https://appwrite.io/discord",
"getInspired" to "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion node-typescript/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion node-typescript/starter/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default async ({ req, res, log, error }: Context) => {

// `res.json()` is a handy helper for sending JSON
return res.json({
motto: 'Build Fast. Scale Big. All in One Place.',
motto: 'Build like a team of hundreds_',
learn: 'https://appwrite.io/docs',
connect: 'https://appwrite.io/discord',
getInspired: 'https://builtwith.appwrite.io',
Expand Down
2 changes: 1 addition & 1 deletion node/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion node/starter/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async ({ req, res, log, error }) => {

// `res.json()` is a handy helper for sending JSON
return res.json({
motto: 'Build Fast. Scale Big. All in One Place.',
motto: 'Build like a team of hundreds_',
learn: 'https://appwrite.io/docs',
connect: 'https://appwrite.io/discord',
getInspired: 'https://builtwith.appwrite.io',
Expand Down
2 changes: 1 addition & 1 deletion php/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion php/starter/src/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

// `res.json()` is a handy helper for sending JSON
return $context->res->json([
'motto' => 'Build Fast. Scale Big. All in One Place.',
'motto' => 'Build like a team of hundreds_',
'learn' => 'https://appwrite.io/docs',
'connect' => 'https://appwrite.io/discord',
'getInspired' => 'https://builtwith.appwrite.io',
Expand Down
2 changes: 1 addition & 1 deletion python/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion python/starter/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def main(context):
# `ctx.res.json()` is a handy helper for sending JSON
return context.res.json(
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io",
Expand Down
2 changes: 1 addition & 1 deletion ruby/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion ruby/starter/lib/main.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def main(context)
# `ctx.res.json()` is a handy helper for sending JSON
return context.res.json(
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io",
Expand Down
2 changes: 1 addition & 1 deletion swift/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Sample `200` Response:

```json
{
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io"
Expand Down
2 changes: 1 addition & 1 deletion swift/starter/Sources/index.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func main(context: RuntimeContext) async throws -> RuntimeOutput {

// `context.res.json()` is a handy helper for sending JSON
return try context.res.json([
"motto": "Build Fast. Scale Big. All in One Place.",
"motto": "Build like a team of hundreds_",
"learn": "https://appwrite.io/docs",
"connect": "https://appwrite.io/discord",
"getInspired": "https://builtwith.appwrite.io",
Expand Down

0 comments on commit 9248f50

Please sign in to comment.