Skip to content
This repository has been archived by the owner on Feb 18, 2019. It is now read-only.

Commit

Permalink
Adding wsgi script and .gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
oremj committed Dec 21, 2012
1 parent 66ea9ae commit b26b0d0
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitignore
@@ -0,0 +1,33 @@
settings_local.py*
settings_local_*.py
shellng_local.py
*.py[co]
*.sw[po]
.coverage
.vagrant
pip-log.txt
docs/_gh-pages
lib/product_json/.gitignore
lib/product_json/*.json
lib/product_json/.last_update
lib/product_json/regions/*.json
lib/product_json/regions/.last_update
build.py
media/manifest.appcache
media/external/*
.DS_Store
/media/img/uploads
*.js.tmp
*.css.tmp
*-min.css
*-all.css
*-min.js
*-all.js
*.less.css
locale
vendor
.nose*
tmp/*
tags
vagrantconfig_local.yaml
vagrant/manifests/classes/custom.pp
Empty file added wsgi/__init__.py
Empty file.
13 changes: 13 additions & 0 deletions wsgi/gelato.py
@@ -0,0 +1,13 @@
import os

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gelato.admin.settings")

# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)

0 comments on commit b26b0d0

Please sign in to comment.