Files
jc-ng/src/projects.wsgi
2025-06-15 15:41:17 +01:00

9 lines
159 B
Python
Executable File

#!/usr/bin/python3
import sys
sys.path.append('/var/www/jc')
from index import app as application
if __name__ == '__main__':
application.run(debug=True)