From 3334c0d5711d3fc716749591495cd8d6166003fc Mon Sep 17 00:00:00 2001 From: tchawou-daniel Date: Fri, 15 Jan 2021 15:25:37 +0100 Subject: [PATCH] add env variable --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 043d157..0c39237 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,6 +5,9 @@ jobs: - image: circleci/python:3.7.4 steps: - checkout + - run: export CONDUIT_SECRET='something-really-secret' + - run: export FLASK_APP=autoapp.py + - run: export FLASK_DEBUG=1 - run: name: install pyth dependencies command: | @@ -20,7 +23,7 @@ jobs: - image: circleci/python:3.7.4 environment: DATABASE_URL: postgresql://myuser:somePwd@localhost:5432/myuser - - image: circleci/postgres:9.6.5 + - image: circleci/postgres:9.6.5-alpine-ram environment: POSTGRES_DB: myuser POSTGRES_USER: myuser