|
|
@ -3,9 +3,20 @@ jobs: |
|
|
build: |
|
|
build: |
|
|
docker: |
|
|
docker: |
|
|
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run |
|
|
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run |
|
|
|
|
|
environment: |
|
|
|
|
|
DATABASEURL: postgres://psqluser:psqlpassword@localhost:5432/psdb |
|
|
|
|
|
JWT_SECRET: secret |
|
|
|
|
|
API_PORT: 3000 |
|
|
|
|
|
API_HOST: localhost |
|
|
|
|
|
API_PROTOCOL: http |
|
|
auth: |
|
|
auth: |
|
|
username: mydockerhub-user |
|
|
username: mydockerhub-user |
|
|
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference |
|
|
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference |
|
|
|
|
|
- image: 'circleci/postgresql:9.6.2-alpine' |
|
|
|
|
|
environment: |
|
|
|
|
|
POSTGRE_USER: psqluser |
|
|
|
|
|
POSTGRE_PASSWORD: psqlpassword |
|
|
|
|
|
POSTGRE_DB: psdb |
|
|
steps: |
|
|
steps: |
|
|
- checkout # check out the code in the project directory |
|
|
- checkout # check out the code in the project directory |
|
|
- restore_cache: |
|
|
- restore_cache: |
|
|
|