From 50da698d4b47a106fff52201818dcfcca16cbc7e Mon Sep 17 00:00:00 2001 From: tchawou-daniel Date: Fri, 15 Jan 2021 15:35:41 +0100 Subject: [PATCH] add env --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 71e369b..b95024f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,9 +5,11 @@ jobs: - image: circleci/python:3.7.4 steps: - checkout - - env: CONDUIT_SECRET='something-really-secret' - - env: FLASK_APP=autoapp.py - - env: FLASK_DEBUG=1 + environment: + CONDUIT_SECRET: 'something-really-secret' + FLASK_APP: autoapp.py + FLASK_DEBUG: 1 + - run: echo "$CONDUIT_SECRET $FLASK_APP $FLASK_DEBUG" - run: name: install pyth dependencies command: |