7 lines
144 B
Python
7 lines
144 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# -*- coding: UTF-8 -*-
|
||
|
|
|
||
|
|
from myapp import app as application
|
||
|
|
|
||
|
|
application.run(debug = True, host= '0.0.0.0', port=8000)
|