8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-05 09:03:14 +00:00

initial comit

This commit is contained in:
chirac 2016-06-30 01:39:31 +02:00
commit 31c23c2ba5
5 changed files with 47 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
settings.py

10
manage.py Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "re2o.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)

0
re2o/__init__.py Normal file
View file

20
re2o/urls.py Normal file
View file

@ -0,0 +1,20 @@
"""re2o URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.8/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
Including another URLconf
1. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
]

16
re2o/wsgi.py Normal file
View file

@ -0,0 +1,16 @@
"""
WSGI config for re2o 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.8/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "re2o.settings")
application = get_wsgi_application()