12 lines
230 B
Python
Executable file
12 lines
230 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import os
|
|
|
|
INTERP = os.path.expanduser("~/env/bin/python3")
|
|
if sys.executable != INTERP:
|
|
os.execl(INTERP, INTERP, *sys.argv)
|
|
|
|
sys.path.append(os.getcwd())
|
|
|
|
from app import app as application
|