config: rename config file to ogcp.json

Do not use the same name as ogserver config file.
multi-ogserver
Jose M. Guisado 2020-11-06 09:32:27 +00:00
parent b708047d28
commit b8ac0b7963
2 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from flask import Flask
from os import urandom
app = Flask(__name__)
app.config.from_json('cfg/ogserver.json')
app.config.from_json('cfg/ogcp.json')
app.secret_key = urandom(16)
babel = Babel(app)