Skip to content

Commit

Permalink
Rebase on config and fix settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DinoBektesevic committed Apr 28, 2021
1 parent 6858020 commit 022a5ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions trail/trail/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@

DATABASES = {
'default': {
'ENGINE': config.db.engine,
'NAME' : config.db.name,
'USER' : config.db.user,
'PASSWORD' : config.db.password,
'HOST' : config.db.host,
'PORT' : config.db.port
'ENGINE': dbConfig.engine,
'NAME' : dbConfig.name,
'USER' : dbConfig.user,
'PASSWORD' : dbConfig.password,
'HOST' : dbConfig.host,
'PORT' : dbConfig.port
}
}

Expand Down

0 comments on commit 022a5ae

Please sign in to comment.