From b8ac0b7963faf8c26bf116516f7f8f097cd5e30a Mon Sep 17 00:00:00 2001 From: "Jose M. Guisado" Date: Fri, 6 Nov 2020 09:32:27 +0000 Subject: [PATCH] config: rename config file to ogcp.json Do not use the same name as ogserver config file. --- ogcp/__init__.py | 2 +- ogcp/cfg/{ogserver.json => ogcp.json} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename ogcp/cfg/{ogserver.json => ogcp.json} (100%) diff --git a/ogcp/__init__.py b/ogcp/__init__.py index fb860b9..8c7c732 100644 --- a/ogcp/__init__.py +++ b/ogcp/__init__.py @@ -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) diff --git a/ogcp/cfg/ogserver.json b/ogcp/cfg/ogcp.json similarity index 100% rename from ogcp/cfg/ogserver.json rename to ogcp/cfg/ogcp.json