Added Fabric Config
This commit is contained in:
parent
ef13263030
commit
912c64ef0b
4 changed files with 115 additions and 0 deletions
7
rockviewer.wsgi
Normal file
7
rockviewer.wsgi
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import os
|
||||
import sys
|
||||
# put the Django project on sys.path
|
||||
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "../")))
|
||||
os.environ["DJANGO_SETTINGS_MODULE"] = "three_d_viewer.settings"
|
||||
from django.core.handlers.wsgi import WSGIHandler
|
||||
application = WSGIHandler()
|
||||
Loading…
Add table
Add a link
Reference in a new issue