Skip to content

Commit 9248f50

Browse files
Merge pull request #244 from appwrite/feat-rebrand
Feat: Motto rebrand
2 parents 954c0c0 + d7e4ecf commit 9248f50

File tree

26 files changed

+26
-26
lines changed

26 files changed

+26
-26
lines changed

bun/starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sample `200` Response:
2626

2727
```json
2828
{
29-
"motto": "Build Fast. Scale Big. All in One Place.",
29+
"motto": "Build like a team of hundreds_",
3030
"learn": "https://appwrite.io/docs",
3131
"connect": "https://appwrite.io/discord",
3232
"getInspired": "https://builtwith.appwrite.io"

bun/starter/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default async ({ req, res, log, error }: any) => {
2525

2626
// `res.json()` is a handy helper for sending JSON
2727
return res.json({
28-
motto: "Build Fast. Scale Big. All in One Place.",
28+
motto: "Build like a team of hundreds_",
2929
learn: "https://appwrite.io/docs",
3030
connect: "https://appwrite.io/discord",
3131
getInspired: "https://builtwith.appwrite.io",

cpp/starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sample `200` Response:
2626

2727
```json
2828
{
29-
"motto": "Build Fast. Scale Big. All in One Place.",
29+
"motto": "Build like a team of hundreds_",
3030
"learn": "https://appwrite.io/docs",
3131
"connect": "https://appwrite.io/discord",
3232
"getInspired": "https://builtwith.appwrite.io"

cpp/starter/src/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace runtime {
2424

2525
// `context.res.json()` is a handy helper for sending JSON
2626
Json::Value response;
27-
response["motto"] = "Build Fast. Scale Big. All in One Place.";
27+
response["motto"] = "Build like a team of hundreds_";
2828
response["learn"] = "https://appwrite.io/docs";
2929
response["connect"] = "https://appwrite.io/discord";
3030
response["getInspired"] = "https://builtwith.appwrite.io";

dart/starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sample `200` Response:
2626

2727
```json
2828
{
29-
"motto": "Build Fast. Scale Big. All in One Place.",
29+
"motto": "Build like a team of hundreds_",
3030
"learn": "https://appwrite.io/docs",
3131
"connect": "https://appwrite.io/discord",
3232
"getInspired": "https://builtwith.appwrite.io"

dart/starter/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Future<dynamic> main(final context) async {
2626

2727
// `res.json()` is a handy helper for sending JSON
2828
return context.res.json({
29-
'motto': 'Build Fast. Scale Big. All in One Place.',
29+
'motto': 'Build like a team of hundreds_',
3030
'learn': 'https://appwrite.io/docs',
3131
'connect': 'https://appwrite.io/discord',
3232
'getInspired': 'https://builtwith.appwrite.io',

deno/starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sample `200` Response:
2626

2727
```json
2828
{
29-
"motto": "Build Fast. Scale Big. All in One Place.",
29+
"motto": "Build like a team of hundreds_",
3030
"learn": "https://appwrite.io/docs",
3131
"connect": "https://appwrite.io/discord",
3232
"getInspired": "https://builtwith.appwrite.io"

deno/starter/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default async ({ req, res, log, error }: any) => {
2525

2626
// `res.json()` is a handy helper for sending JSON
2727
return res.json({
28-
motto: "Build Fast. Scale Big. All in One Place.",
28+
motto: "Build like a team of hundreds_",
2929
learn: "https://appwrite.io/docs",
3030
connect: "https://appwrite.io/discord",
3131
getInspired: "https://builtwith.appwrite.io",

dotnet/starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sample `200` Response:
2626

2727
```json
2828
{
29-
"motto": "Build Fast. Scale Big. All in One Place.",
29+
"motto": "Build like a team of hundreds_",
3030
"learn": "https://appwrite.io/docs",
3131
"connect": "https://appwrite.io/discord",
3232
"getInspired": "https://builtwith.appwrite.io"

dotnet/starter/src/Index.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public async Task<RuntimeOutput> Main(RuntimeContext Context)
3333
// `Context.Res.Json()` is a handy helper for sending JSON
3434
return Context.Res.Json(new Dictionary<string, object?>()
3535
{
36-
{ "motto", "Build Fast. Scale Big. All in One Place." },
36+
{ "motto", "Build like a team of hundreds_" },
3737
{ "learn", "https://appwrite.io/docs" },
3838
{ "connect", "https://appwrite.io/discord" },
3939
{ "getInspired", "https://builtwith.appwrite.io" },

0 commit comments

Comments
 (0)