diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5171885 Binary files /dev/null and b/.DS_Store differ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9debb2d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.9.1 + +COPY . /app + +WORKDIR /app + +ENV FLASK_APP=autoapp.py + +RUN pip install -r requirements/dev.txt + +EXPOSE 8000 + +CMD python autoapp.py diff --git a/conduit/.DS_Store b/conduit/.DS_Store new file mode 100644 index 0000000..f64347f Binary files /dev/null and b/conduit/.DS_Store differ diff --git a/conduit/settings.py b/conduit/settings.py index b838a6d..8b5b573 100644 --- a/conduit/settings.py +++ b/conduit/settings.py @@ -25,6 +25,7 @@ class Config(object): 'http://localhost:4200', 'http://0.0.0.0:4000', 'http://localhost:4000', + 'https://determined-mccarthy-54f8af.netlify.app' ] JWT_HEADER_TYPE = 'Token'