Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
GoNzCiD committed Jul 19, 2020
1 parent 99a3b36 commit e9bdd22
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
lib
venv
lib/
venv/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
venv/
2 changes: 1 addition & 1 deletion common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# General
TIMER = int(os.getenv("TIMER", "30"))
OUTPUT_METHOD = "dropbox" # values: dropbox, file_system
OUTPUT_METHOD = os.getenv("OUTPUT_METHOD", "dropbox") # values: dropbox, file_system

# Scrapper
SERVER_URL = os.getenv("SERVER_URL")
Expand Down

0 comments on commit e9bdd22

Please sign in to comment.