* feat(.gitignore): add development.sqlite to ignore list

* feat(config.py): add configuration for SQLite database
This commit is contained in:
hackish 2023-09-13 13:07:09 -07:00
parent 21396b5660
commit 8a6776fd51
2 changed files with 6 additions and 1 deletions

5
.gitignore vendored
View file

@ -167,7 +167,8 @@ cython_debug/
.LSOverride .LSOverride
# Icon must end with two \r # Icon must end with two \r
Icon Icon
# Thumbnails # Thumbnails
._* ._*
@ -203,3 +204,5 @@ Temporary Items
# .nfs files are created when an open file is removed but is still being accessed # .nfs files are created when an open file is removed but is still being accessed
.nfs* .nfs*
# MXRoute_Relay-specific local SQLite database for development
development.sqlite

2
mxroute_relay/config.py Normal file
View file

@ -0,0 +1,2 @@
DATABASE_FILE = "development.sqlite"
ENGINE_URI = "sqlite:///" + DATABASE_FILE