summaryrefslogtreecommitdiff
path: root/fossee_project
diff options
context:
space:
mode:
authorprathamesh2014-12-02 16:35:13 +0530
committerprathamesh2014-12-02 16:35:13 +0530
commit3352bff4d70cac5884d87c20e300131243cc1305 (patch)
tree1460427ebecef6899cc39d0799fd7a739e601032 /fossee_project
downloadcertificate-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__.py0
-rw-r--r--fossee_project/urls.py13
-rw-r--r--fossee_project/wsgi.py14
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()