提交 dcff8495 编写于 作者: baltery's avatar baltery

Add run development server script: run_server.py

上级 3a9cf6c3
#!/usr/bin/env python
#
# ~*~ coding: utf-8 ~*~
from threading import Thread
import os
import subprocess
try:
from config import config as env_config, env
CONFIG = env_config.get(env, 'default')()
except ImportError:
CONFIG = type('_', (), {'__getattr__': None})()
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
apps_dir = os.path.join(BASE_DIR, 'apps')
def start_django():
http_host = CONFIG.HTTP_BIND_HOST or 'locahost'
http_port = CONFIG.HTTP_LISTEN_HOST or '8080'
os.chdir(apps_dir)
print('start django')
subprocess.call('python ./manage.py runserver %s:%s' % (http_host, http_port), shell=True)
def start_celery():
os.chdir(apps_dir)
print('start celery')
subprocess.call('celery -A common worker -l info', shell=True)
def main():
t1 = Thread(target=start_django, args=())
t2 = Thread(target=start_celery, args=())
t1.start()
t2.start()
t1.join()
t2.join()
if __name__ == '__main__':
main()
import threading
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册