Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Motto rebrand #244

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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