python学习
This commit is contained in:
18
manager.py
Normal file
18
manager.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from application import app,manager
|
||||
from flask_script import Server
|
||||
import www
|
||||
|
||||
##web server
|
||||
manager.add_command( "runserver", Server( host='0.0.0.0',port=app.config['SERVER_PORT'],use_debugger = True ,use_reloader = True) )
|
||||
|
||||
def main():
|
||||
manager.run( )
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
import sys
|
||||
sys.exit( main() )
|
||||
except Exception as e:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
Reference in New Issue
Block a user