Files
myapp-full/run.py
RemiZOffAlex 60802cec8e Update
2019-04-26 15:38:41 +03:00

12 lines
272 B
Python
Executable File

#!/usr/bin/env python3
__author__ = 'RemiZOffAlex'
__copyright__ = '(c) RemiZOffAlex'
__license__ = 'MIT'
__email__ = 'remizoffalex@mail.ru'
__url__ = 'https://remizoffalex.ru'
from myapp import app as application
application.run(debug=True, host='0.0.0.0', port=8000)