* feat(.gitignore): add development.sqlite to ignore list
* feat(config.py): add configuration for SQLite database
This commit is contained in:
parent
21396b5660
commit
8a6776fd51
2 changed files with 6 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -169,6 +169,7 @@ cython_debug/
|
||||||
# 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
2
mxroute_relay/config.py
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
DATABASE_FILE = "development.sqlite"
|
||||||
|
ENGINE_URI = "sqlite:///" + DATABASE_FILE
|
Loading…
Reference in a new issue