Fix migration error when migrating from scratch

This commit is contained in:
rubenwardy
2020-09-01 14:57:03 +01:00
parent 934d581737
commit 5b086bb559
4 changed files with 68 additions and 32 deletions

View File

@@ -1,11 +1,11 @@
USER_APP_NAME = "ContentDB"
SERVER_NAME = "content.minetest.net"
SERVER_NAME = "localhost:5123"
BASE_URL = "http://" + SERVER_NAME
SECRET_KEY = ""
WTF_CSRF_SECRET_KEY = ""
SQLALCHEMY_DATABASE_URI = "sqlite:///../db.sqlite"
SQLALCHEMY_DATABASE_URI = "postgres://contentdb:password@db:5432/contentdb"
SQLALCHEMY_TRACK_MODIFICATIONS = False
GITHUB_CLIENT_ID = ""