From 3352bff4d70cac5884d87c20e300131243cc1305 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 2 Dec 2014 16:35:13 +0530 Subject: Initial commit, development stage. Auto generation of certificate for Scilab conference --- fossee_project/__init__.py | 0 fossee_project/urls.py | 13 +++++++++++++ fossee_project/wsgi.py | 14 ++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 fossee_project/__init__.py create mode 100644 fossee_project/urls.py create mode 100644 fossee_project/wsgi.py (limited to 'fossee_project') diff --git a/fossee_project/__init__.py b/fossee_project/__init__.py new file mode 100644 index 0000000..e69de29 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() -- cgit