itermocil --here abc
To do so, you intall itermocil and use itermocil-sample-abc.yml:
mv ./itermocil-sample-abc.yml ~/.itermocil/abc.yml
run
docker-compose up
or
or docker-compose up -d to run in background
at the root of the project
We have a docker-compose file to set up your development environment. This sets up one docker container: A local version of the Dynamodb that runs on localhost:8000
If you intend on using the local enviroment you have to include NODE_ENV=development in your run command
NODE_ENV=development
Otherwise the app is going to try to run with the enviroment variables configured on Netlify instead and without pointing to the localhost.
check this: https://readwriteexercise.com/posts/setting-up-create-react-app-vs-code-eslint-prettier/
npm install -g dynamodb-admin
check this out: https://medium.com/swlh/a-gui-for-local-dynamodb-dynamodb-admin-b16998323f8e
run it with
DYNAMO_ENDPOINT=http://localhost:8000 AWS_ACCESS_KEY_ID=access_key_id AWS_SECRET_ACCESS_KEY=secret_access_key AWS_REGION=localhost dynamodb-admin
and see it on http://localhost:8001/
NODE_ENV=development npm run start:lambda
create lessons table and fixtures
node src/lambda/dbData/createTable.js
see the graphql backend server on http://localhost:9000/graphql
and query it with a simple query:
query {
lessons {
id
name
}
}
npm start
and see it on
http://localhost:3000/
This project makes use of 3 (three) different tables on DynamoDB:
A table for lessons that should be named lessons
having a primary key id
.
A table for users that should be named users
having a primary key id
.
A table for menus that should be named menus
having a primary key id
.
This project uses expiring items in the users
table for the forgot password functionality. To enable this its necessary to turn Time To Live on your users
table.
You can enable TTL by clicking on the table, opening the Overview
tab and under Table details
there will be a TTL
attribute, choose Manage TTL
. In the Manage TTL dialog box, choose Enable TTL and enter the TTL attribute name: expdate
.
Since to be able to run the mutations / access create user pages you need to already be authenticated it's needed to create the first user on the DynamoDB table users
, following this format:
{
"id": "yourID",
"login": "yourLogin",
"name": "yourName",
"password": "yourPassword",
"email": "yourEmail",
"type": "admin"
}
The user type needs to be "admin" in order to be able to access all pages and run all mutations.
This project is setup using Netlify, meaning the enviroment variables used to grant the app access to the Dynamodb and S3 Bucket are configured on the Netlify. On the deploy settings you have to setup the appropriate value for your AWS Access Key ID and AWS Secret Key. You can create multiple different users in the IAM console, as such creating multiple different sets of Access Keys and Secret Keys, but its important to remember to give each user the appropriate permissions.
The variables are:
MY_AWS_DB_ACCESS_KEY_ID
with the value being your AWS Access Key ID with permissions to access your Dynamodb. On IAM console: AmazonDynamoDBFullAccess
.
MY_AWS_DB_SECRET_ACCESS_KEY
with the value being your AWS Secret Key with permissions to access your Dynamodb. On IAM console: AmazonDynamoDBFullAccess
.
MY_AWS_BUCKET_ACCESS_KEY_ID
with the value being your AWS Access Key ID with permissions to access your S3 Bucket. On IAM console: AmazonS3FullAccess
.
MY_AWS_BUCKET_SECRET_ACCESS_KEY
with the value being your AWS Secret Key with permissions to access your S3 Bucket. On IAM console: AmazonS3FullAccess
.
MY_AWS_BUCKET_NAME
with the value being your AWS S3 Bucket name.
REACT_APP_MY_AWS_BUCKET_NAME
with the value being your AWS S3 Bucket name.
MY_AWS_SES_ACCESS_KEY_ID
with the value being your AWS Access Key ID with permissions to access your SES. On IAM console: AmazonSESFullAccess
.
MY_AWS_SES_SECRET_ACCESS_KEY
with the value being your AWS Secret Key with permissions to access your SES. On IAM console: AmazonSESFullAccess
.
MY_AWS_EMAIL_SENDER
with the value being your AWS SES Email sender (for forgot my password).
When running the local version of Dynamodb you can create a table with the table name: lessons
and insert a mock lesson, by running the script createTable.js
inside the folder src/lambda/dbData/createTable.js
.
In regards to Bucket permissions configs, its necessary to set your s3 Bucket policy and CORS policy to allow the application to interact with your Bucket using HTTP request methods. The configuration we recommend is the following:
For the S3 Bucket policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YourBucketName/*"
}
]
}
And for the S3 Bucket CORS policy:
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"POST",
"DELETE"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": []
}
]
This project uses Amazon SES to send emails when the client requests to redefine their password through the forgot my password functionality.
In order for this to work its necessary to create a verified email. On the AWS website you can check under services, look for SES and click on Identity Management, choose an email you want to be the sender of the redefining password emails and verify it.
Note: this verified email is going to be an environment variable in your Netlify under the tag MY_AWS_EMAIL_SENDER
.
When moving to production its necessary to move your SES account out of the Amazon Sandbox, a detailed explanation on how to achieve this can be found at the Amazon Docs.
This project is a reference demo showing you how to use Create React App v3 and netlify-lambda v1 together in a Netlify Dev workflow. You can clone this and immediately be productive with a React app with serverless Netlify Functions in the same repo. Alternatively you can deploy straight to Netlify with this one-click Deploy:
⚠️NOTE: You may not need this project at all. Netlify Dev works with
create-react-app
out of the box! Only usenetlify-lambda
if you need a build step for your functions, eg if you want to use Babel or TypeScript (see its README for details).
Source: The main addition to base Create-React-App is a new folder: src/lambda
. This folder is specified and can be changed in the package.json
script: "build:lambda": "netlify-lambda build src/lambda"
.
Dist: Each JavaScript file in there will be built for Netlify Function deployment in /built-lambda
, specified in netlify.toml
.
As an example, we've included a small src/lambda/hello.js
function, which will be deployed to /.netlify/functions/hello
. We've also included an async lambda example using async/await syntax in async-dadjoke.js
.
Learn how to set this up yourself (and why everything is the way it is) from scratch in a video: https://www.youtube.com/watch?v=3ldSM98nCHI
All functions (inside src/lambda
) are compiled with webpack using Babel, so you can use modern JavaScript, import npm modules, etc., without any extra setup.
## prep steps for first time users
npm i -g netlify-cli # Make sure you have the [Netlify CLI](https://github.com/netlify/cli) installed
git clone https://github.com/netlify/create-react-app-lambda ## clone this repo
cd create-react-app-lambda ## change into this repo
yarn # install all dependencies
## done every time you start up this project
ntl dev ## nice shortcut for `netlify dev`, starts up create-react-app AND a local Node.js server for your Netlify functions
This fires up Netlify Dev, which:
create-react-app
project and runs the npm script that contains react-scripts start
, which in this project is the start
scriptnetlify-lambda
as a function builder, and runs the npm script that contains netlify-lambda build
, which in this project is the build:lambda
script.You can view the project locally via Netlify Dev, via localhost:8888
.
Each function will be available at the same port as well:
http://localhost:8888/.netlify/functions/hello
andhttp://localhost:8888/.netlify/functions/async-dadjoke
During deployment, this project is configured, inside netlify.toml
to run the build command
: yarn build
.
yarn build
corresponds to the npm script build
, which uses npm-run-all
(aka run-p
) to concurrently run "build:app"
(aka react-scripts build
) and build:lambda
(aka netlify-lambda build src/lambda
).
If you want to try working in Typescript on the client and lambda side: There are a bunch of small setup details to get right. Check https://github.com/sw-yx/create-react-app-lambda-typescript for a working starter.
For a full demo of routing and authentication, check this branch: https://github.com/netlify/create-react-app-lambda/pull/18 This example will not be maintained but may be helpful.
create-react-app
's default service worker (in src/index.js
) does not work with lambda functions out of the box. It prevents calling the function and returns the app itself instead (Read more). To solve this you have to eject and enhance the service worker configuration in the webpack config. Whitelist the path of your lambda function and you are good to go.