mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-22 14:38:03 +01:00
Add default to database url
This commit is contained in:
parent
097074bac5
commit
05d3ff455d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ env = environ.Env(
|
||||||
LOG_LEVEL=(str, "DEBUG"),
|
LOG_LEVEL=(str, "DEBUG"),
|
||||||
LOG_FORMAT=(str, "default"),
|
LOG_FORMAT=(str, "default"),
|
||||||
APP_DATA=(Path, PROJECT_ROOT / "data"),
|
APP_DATA=(Path, PROJECT_ROOT / "data"),
|
||||||
DATABASE_URL=str,
|
DATABASE_URL=(str, "sqlite:////app/db/db.sqlite3"),
|
||||||
)
|
)
|
||||||
|
|
||||||
env_file = os.getenv("ENV_FILE", None)
|
env_file = os.getenv("ENV_FILE", None)
|
||||||
|
|
Loading…
Reference in a new issue