57ed9251e8
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
18 lines
385 B
Python
Executable File
18 lines
385 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys, os
|
|
import os.path
|
|
|
|
PROJECT = '/path/to/euscanwww'
|
|
|
|
sys.path.insert(0, os.path.dirname(PROJECT))
|
|
sys.path.insert(0, PROJECT)
|
|
|
|
os.chdir(PROJECT)
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = "euscanwww.settings"
|
|
os.environ['HOME'] = "/path/to/home"
|
|
|
|
from django.core.servers.fastcgi import runfastcgi
|
|
runfastcgi(method="threaded", daemonize="false", maxspare=1)
|