Skip to content

Commit

Permalink
default for driver set
Browse files Browse the repository at this point in the history
  • Loading branch information
corgijan committed Oct 21, 2024
1 parent 18e7c67 commit ab841ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
app.secret_key = os.urandom(64)
app.config['MAX_CONTENT_LENGTH'] = 2 * 1024 * 1024

DB_DRIVER = "JSON" # JSON or SQLITE
DB_DRIVER = os.environ.get("DRIVER") or "SQLITE" # JSON or SQLITE
DATAFILE = os.environ.get("DATA_PATH") or "data/data.json"
PASSPHRASE = os.environ.get("RECIPE_PASSPHRASE") or "ichessegernekuchen"

Expand Down

0 comments on commit ab841ca

Please sign in to comment.