From 22c4f4e4ef13b83a85d69394143a51f24dbc1a3a Mon Sep 17 00:00:00 2001 From: sbstjn Date: Thu, 12 Jul 2018 14:12:40 +0200 Subject: [PATCH 1/3] Update styles for Servers section --- src/App.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/App.css b/src/App.css index 2ef3e14..7c4b038 100644 --- a/src/App.css +++ b/src/App.css @@ -110,10 +110,14 @@ span.pink { color: #6c5b7b; } -.section.server { +.section.servers { background-color: #515c7c; } +.section.servers a { + color: #515c7c; +} + .section.dbProxy { background-color: #355c7d; } From 7b19d835ab9eae79acd7b678186161a8bfa59d62 Mon Sep 17 00:00:00 2001 From: sbstjn Date: Thu, 12 Jul 2018 14:13:13 +0200 Subject: [PATCH 2/3] Add Servers section to toolsData.js --- src/toolsData.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/toolsData.js b/src/toolsData.js index 5c035aa..e3de20d 100644 --- a/src/toolsData.js +++ b/src/toolsData.js @@ -311,6 +311,20 @@ export default { } ] }, + servers: { + name: "Servers", + description: + "This is where the business logic (e.g. user authentication, data processing) for your app traditionally lives. Common examples are Express apps, Django apps, Laravel apps, etc. They may also provide RESTful API endpoints (there's nothing saying you can't use GraphQL and REST in the same system).", + tools: [ + { + name: "AppSync Resolvers", + description: + "Package to write, configure, and manage serverless AWS Lambda functions in Golang as custom data resolvers for AWS AppSync queries and fields.", + github: "https://github.com/sbstjn/appsync-resolvers", + language: Go + } + ] + }, dbProxy: { name: "Database-to-GraphQL Servers", description: From d43b4c8826aafb5834077b90694dfcdcfaebce73 Mon Sep 17 00:00:00 2001 From: sbstjn Date: Thu, 12 Jul 2018 14:13:29 +0200 Subject: [PATCH 3/3] Replace StaticSection with data from toolsData.js --- src/App.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/App.js b/src/App.js index f5dd71c..b471a4a 100644 --- a/src/App.js +++ b/src/App.js @@ -38,15 +38,7 @@ class App extends Component {
- -

- This is where the business logic (e.g. user authentication, data - processing) for your app traditionally lives. Common examples are - Express apps, Django apps, Laravel apps, etc. They may also - provide RESTful API endpoints (there's nothing saying you can't - use GraphQL and REST in the same system.) -

-
+