* 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
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -167,7 +167,8 @@ cython_debug/
|
|||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
Icon
|
||||
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
@ -203,3 +204,5 @@ Temporary Items
|
|||
# .nfs files are created when an open file is removed but is still being accessed
|
||||
.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