2018-02-26 09:59:54 +03:00
|
|
|
#!/usr/bin/env python3
|
2019-04-26 15:38:41 +03:00
|
|
|
|
|
|
|
|
__author__ = 'RemiZOffAlex'
|
|
|
|
|
__copyright__ = '(c) RemiZOffAlex'
|
|
|
|
|
__license__ = 'MIT'
|
|
|
|
|
__email__ = 'remizoffalex@mail.ru'
|
|
|
|
|
__url__ = 'https://remizoffalex.ru'
|
2018-02-26 09:59:54 +03:00
|
|
|
|
|
|
|
|
from myapp import app as application
|
|
|
|
|
|
2019-04-26 15:38:41 +03:00
|
|
|
application.run(debug=True, host='0.0.0.0', port=8000)
|