Commit 724900dc authored by wanli's avatar wanli

update

parent d8765d5f
...@@ -10,8 +10,8 @@ conf.read(os.path.join(os.getcwd(), "config.ini")) ...@@ -10,8 +10,8 @@ conf.read(os.path.join(os.getcwd(), "config.ini"))
config = dict( config = dict(
NAME='evm_store', NAME='evm_store',
DEBUG=True, DEBUG=True,
HOST="127.0.0.1", HOST=conf.get('application', 'host'),
PORT=5000, PORT=int(conf.get('application', 'port')),
LOGIN_DISABLED=False, LOGIN_DISABLED=False,
MD5_SALT="EhuqUkwV", MD5_SALT="EhuqUkwV",
SECRET_KEY='secret_key_EhuqUkwV', SECRET_KEY='secret_key_EhuqUkwV',
......
...@@ -20,4 +20,5 @@ name = evm_store ...@@ -20,4 +20,5 @@ name = evm_store
backup_dir = backup backup_dir = backup
evueapps_dir = evueapps evueapps_dir = evueapps
launcher_dir = launcher launcher_dir = launcher
framework = framework host = 127.0.0.1
\ No newline at end of file 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