View .gitlab-ci.yml
# 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. |
View amplify.yml
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 |