Skip to content

Instantly share code, notes, and snippets.

@superjose
superjose / amplify.yml
Created September 25, 2020 05:58
AWS Amplify Monorepo - amplify.yml - create react app
version: 1
applications:
- appRoot: app
env:
variables:
SKIP_PREFLIGHT_CHECK: true
DEV_REACT_APP_APPSYNC_API_ID: replace_with_your_value
DEV_REACT_APP_APPSYNC_URL: replace_with_your_value
DEV_REACT_APP_AUTH0_CALLBACK_URL: replace_with_your_value
DEV_REACT_APP_AUTH0_RETURN_TO_URL: replace_with_your_value
@superjose
superjose / .gitlab-ci.yml
Last active February 19, 2024 10:22
This is an example of a .gitlab-ci.yml that is required for Continuous Integration on GitLab projects.
# Reference: https://www.exclamationlabs.com/blog/continuous-deployment-to-npm-using-gitlab-ci/
# GitLab uses docker in the background, so we need to specify the
# image versions. This is useful because we're freely to use
# multiple node versions to work with it. They come from the docker
# repo.
# Uses NodeJS V 9.4.0
image: node:9.4.0
# And to cache them as well.