diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index a718b3f..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,27 +0,0 @@ -version: 2 -jobs: - build: - docker: python:3.8-alpine - working_directory: ~/back - steps: - - checkout - - restore_cache: - key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }} - - run: - name: set env vars - command: | - export CONDUIT_SECRET='something-really-secret' - export FLASK_APP=/path/to/autoapp.py - export FLASK_DEBUG=1 - pip install -r requirements/dev.txt --user - - save_cache: - key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }} - paths: - - "/usr/local/bin" - - "/usr/local/lib/python3.6/site-packages" - -workflows: - version: 2 - build-test: - jobs: - - build \ No newline at end of file