Ajout des fichiers

This commit is contained in:
2023-05-15 03:38:16 +02:00
parent 79a94cda35
commit 626f8359cf
13 changed files with 389 additions and 0 deletions

9
passenger_wsgi.py Normal file
View File

@ -0,0 +1,9 @@
import imp
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
wsgi = imp.load_source('wsgi', 'app/views.py')
application = wsgi.app