10 lines
216 B
Python
Executable File
10 lines
216 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
__author__ = 'RemiZOffAlex'
|
|
__copyright__ = '(c) RemiZOffAlex'
|
|
__email__ = 'remizoffalex@mail.ru'
|
|
|
|
from myapp import app as application
|
|
|
|
application.run(debug=True, host='0.0.0.0', port=8000)
|