Commit 4c44c6e6 authored by wanli's avatar wanli

🌈 style(): 更新本地配置文件

parent 5fec3d6b
......@@ -13,8 +13,8 @@ import multiprocessing
MODE = 'develop' # develop: 开发模式; production: 生产模式
class ProductionConfig(object):
EPK_DIR = "/home/evm/workspace/evm_app_store_files/epks"
UPLOAD_ROOT_DIR = "/home/evm/workspace/evm_app_store_files"
EPK_DIR = "D:\\projects\\scriptiot\\evm_app_store_files\\epks"
UPLOAD_ROOT_DIR = "D:\\projects\\scriptiot\\evm_app_store_files"
UPLOAD_ALLOWED = set(['doc', 'docs', 'csv', 'xls', 'xlsx'])
BIND = '127.0.0.1:3000'
WORKERS = multiprocessing.cpu_count() * 2 + 1
......@@ -52,8 +52,8 @@ class ProductionConfig(object):
class DevelopConfig(object):
EPK_DIR = "/home/evm/workspace/evm_app_store_files/epks"
UPLOAD_ROOT_DIR = "/home/evm/workspace/evm_app_store_files"
EPK_DIR = "D:\\projects\\scriptiot\\evm_app_store_files\\epks"
UPLOAD_ROOT_DIR = "D:\\projects\\scriptiot\\evm_app_store_files"
UPLOAD_ALLOWED = set(['doc', 'docs', 'csv', 'xls', 'xlsx'])
BIND = '127.0.0.1:3000'
WORKERS = 2
......
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