Browse Source

fix indentation

main
Morgan 6 years ago
parent
commit
30f623f848
  1. 20
      .circleci/config.yml

20
.circleci/config.yml

@ -52,16 +52,18 @@ jobs:
database1: database1:
docker: docker:
- image: "circleci/node:12" - image: "circleci/node:12"
environment:
DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psdb
JWT_SECRET: some string you want
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http
- image: "circleci/postgres:9.6.2-alpine" - image: "circleci/postgres:9.6.2-alpine"
environment:
DATABASE_URL: postgres://psqluer:psqlpassword@localhost:5432/psdb
JWT_SECRET: some string you want
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http
POSTGRES_USER: psqluer
POSTGRES_PASSWORD: psqlpassword
POSTGRES_DB: psdb
environment:
POSTGRES_USER: psqluer
POSTGRES_PASSWORD: psqlpassword
POSTGRES_DB: psdb
steps: steps:
- checkout - checkout

Loading…
Cancel
Save