From 56846e7caa8a94872ba9f940504f5647ae885a7f Mon Sep 17 00:00:00 2001 From: Victor Rodriguez Date: Mon, 16 Jan 2023 15:49:38 -0600 Subject: [PATCH] Add AWS example. --- examples/aws/.eslintrc.json | 0 examples/aws/README.md | 11 +++++++++++ examples/aws/buildspec.yml | 0 examples/aws/serverless.yml | 0 examples/aws/src/app.js | 0 5 files changed, 11 insertions(+) create mode 100644 examples/aws/.eslintrc.json create mode 100644 examples/aws/README.md create mode 100644 examples/aws/buildspec.yml create mode 100644 examples/aws/serverless.yml create mode 100644 examples/aws/src/app.js diff --git a/examples/aws/.eslintrc.json b/examples/aws/.eslintrc.json new file mode 100644 index 0000000..e69de29 diff --git a/examples/aws/README.md b/examples/aws/README.md new file mode 100644 index 0000000..ffad557 --- /dev/null +++ b/examples/aws/README.md @@ -0,0 +1,11 @@ +# No Code AWS example + +This is a basic example to deploy nothing to AWS services with the No Code framework. As you can see, we're not writing any code in `src/app.js` and our `eslint` config is an empty, airbnb-style template since we're not linting any code at all! + +Yes, it is that simple. + +## Deployment + +We're also not setting up any build settings for our non-existent code since it is the No Code belief that not configuring means no deployment, which in turn results in a more efficient application that can be run anywhere without any issues. + +Have fun trying it out! It's a basic template, so you can modify it to suit all your business needs. diff --git a/examples/aws/buildspec.yml b/examples/aws/buildspec.yml new file mode 100644 index 0000000..e69de29 diff --git a/examples/aws/serverless.yml b/examples/aws/serverless.yml new file mode 100644 index 0000000..e69de29 diff --git a/examples/aws/src/app.js b/examples/aws/src/app.js new file mode 100644 index 0000000..e69de29