From 2c23bdd92ed055e9bf82939eac14b019e905c009 Mon Sep 17 00:00:00 2001 From: tchawou-daniel Date: Fri, 15 Jan 2021 11:42:24 +0100 Subject: [PATCH] :building_construction: add .circleci/config.yml --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..870a1c8 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,16 @@ +version: 2 +workflows: + build_and_test: + jobs: + - build + + +jobs: + build: + docker: + - image: circleci/python:3.6.2-stretch-browsers + steps: + - checkout + - run: export CONDUIT_SECRET='something-really-secret' + - run: export FLASK_APP=autoapp.py + - run: export FLASK_DEBUG=1 \ No newline at end of file