Merge branch 'feature/update-task-data' of github.com:sartography/cr-connect-workflow into feature/update-task-data

This commit is contained in:
Dan Funk 2020-01-14 15:40:03 -05:00
commit 2ffe32afdd
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ ADD Pipfile.lock /crc-workflow/
RUN pipenv install --dev
ENV FLASK_APP=./crc/__init__.py
RUN echo $FLASK_APP
# include rejoiner code (gets overriden by local changes)
COPY . /crc-workflow/

View File

@ -28,6 +28,7 @@ migrate = Migrate(app, db)
ma = Marshmallow(app)
from crc import models
from crc import api
connexion_app.add_api('api.yml')
cors = CORS(connexion_app.app)