This commit is contained in:
mcinj 2022-04-24 13:48:52 -04:00
parent 855029e67e
commit 39f8bba230
3 changed files with 4 additions and 2 deletions

View file

@ -1 +1,2 @@
src/config.ini
config/config.ini
config/debug.log

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
env/
venv/
*.ini
__pycache__/
.idea

View file

@ -6,7 +6,7 @@ WORKDIR /app
# resolves gcc issue with installing regex dependency
RUN apk add build-base tzdata --no-cache
ENV TZ=Africa/New_York
ENV TZ=America/New_York
ENV VIRTUAL_ENV=/app/env
ENV PATH="$VIRTUAL_ENV/bin:$PATH"