9 lines
155 B
Python
9 lines
155 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from gunicorn.app.wsgiapp import run
|
||
|
|
||
|
run()
|
||
|
# from my_homepage import create_app
|
||
|
|
||
|
# app = create_app()
|
||
|
# app.run("0.0.0.0", "4040")
|