7 lines
186 B
Python
Executable File
7 lines
186 B
Python
Executable File
#!/usr/local/www/myapp/venv/bin/python3
|
|
import sys
|
|
from gunicorn.app.wsgiapp import run
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = sys.argv[0].removesuffix('.exe')
|
|
sys.exit(run())
|