Files
jc-ng/src/projects.wsgi
2025-11-11 20:49:23 +00:00

10 lines
166 B
Python
Executable File

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