Commit 724900dc authored by wanli's avatar wanli

update

parent d8765d5f
......@@ -10,8 +10,8 @@ conf.read(os.path.join(os.getcwd(), "config.ini"))
config = dict(
NAME='evm_store',
DEBUG=True,
HOST="127.0.0.1",
PORT=5000,
HOST=conf.get('application', 'host'),
PORT=int(conf.get('application', 'port')),
LOGIN_DISABLED=False,
MD5_SALT="EhuqUkwV",
SECRET_KEY='secret_key_EhuqUkwV',
......
......@@ -20,4 +20,5 @@ name = evm_store
backup_dir = backup
evueapps_dir = evueapps
launcher_dir = launcher
framework = framework
\ No newline at end of file
host = 127.0.0.1
port = 5000
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment