diff options
author | prathamesh | 2014-12-02 16:35:13 +0530 |
---|---|---|
committer | prathamesh | 2014-12-02 16:35:13 +0530 |
commit | 3352bff4d70cac5884d87c20e300131243cc1305 (patch) | |
tree | 1460427ebecef6899cc39d0799fd7a739e601032 /fossee_project | |
download | certificate-generator-3352bff4d70cac5884d87c20e300131243cc1305.tar.gz certificate-generator-3352bff4d70cac5884d87c20e300131243cc1305.tar.bz2 certificate-generator-3352bff4d70cac5884d87c20e300131243cc1305.zip |
Initial commit, development stage.
Auto generation of certificate for Scilab conference
Diffstat (limited to 'fossee_project')
-rw-r--r-- | fossee_project/__init__.py | 0 | ||||
-rw-r--r-- | fossee_project/urls.py | 13 | ||||
-rw-r--r-- | fossee_project/wsgi.py | 14 |
3 files changed, 27 insertions, 0 deletions
diff --git a/fossee_project/__init__.py b/fossee_project/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/fossee_project/__init__.py diff --git a/fossee_project/urls.py b/fossee_project/urls.py new file mode 100644 index 0000000..162dd5d --- /dev/null +++ b/fossee_project/urls.py @@ -0,0 +1,13 @@ +from django.conf.urls import patterns, include, url + +from django.contrib import admin +admin.autodiscover() + +urlpatterns = patterns('', + # Examples: + # url(r'^$', 'fossee_project.views.home', name='home'), + # url(r'^blog/', include('blog.urls')), + + url(r'^admin/', include(admin.site.urls)), + url(r'^certificate/', include('certificate.urls')), +) diff --git a/fossee_project/wsgi.py b/fossee_project/wsgi.py new file mode 100644 index 0000000..621d5df --- /dev/null +++ b/fossee_project/wsgi.py @@ -0,0 +1,14 @@ +""" +WSGI config for fossee_project project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ +""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "fossee_project.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application() |