summaryrefslogtreecommitdiff
path: root/backend/EcoAlert
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2019-03-11 21:00:02 +0400
committerAndrew <saintruler@gmail.com>2019-03-11 21:00:02 +0400
commit7e7dd5244e8d26485ad7950a89c04c98c4fef83f (patch)
tree810730c4650392080fb87a78d3b527201e89fe4b /backend/EcoAlert
Initial commit/
Diffstat (limited to 'backend/EcoAlert')
-rw-r--r--backend/EcoAlert/__init__.py0
-rw-r--r--backend/EcoAlert/settings.py148
-rw-r--r--backend/EcoAlert/urls.py27
-rw-r--r--backend/EcoAlert/wsgi.py16
4 files changed, 191 insertions, 0 deletions
diff --git a/backend/EcoAlert/__init__.py b/backend/EcoAlert/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/backend/EcoAlert/__init__.py
diff --git a/backend/EcoAlert/settings.py b/backend/EcoAlert/settings.py
new file mode 100644
index 0000000..810aa9a
--- /dev/null
+++ b/backend/EcoAlert/settings.py
@@ -0,0 +1,148 @@
+"""
+Django settings for EcoAlert project.
+
+Generated by 'django-admin startproject' using Django 2.1.5.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = '-vihnj-@%qsmy6py(%$(d0kk*k@c)$2dm-7v_3+3owgm#5oe#1'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = ['*']
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+
+ 'django.contrib.sites',
+
+ 'corsheaders',
+ 'allauth',
+ 'allauth.account',
+
+ 'rest_framework',
+ 'rest_framework.authtoken',
+ 'rest_auth',
+ 'rest_auth.registration',
+ 'articles'
+]
+
+MIDDLEWARE = [
+ 'corsheaders.middleware.CorsMiddleware',
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'EcoAlert.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [os.path.join(BASE_DIR, 'templates')]
+ ,
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'EcoAlert.wsgi.application'
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+AUTH_USER_MODEL = 'articles.User'
+CORS_ORIGIN_ALLOW_ALL = True
+
+REST_AUTH_SERIALIZERS = {
+ 'USER_DETAILS_SERIALIZER': 'articles.api.serializers.UserSerializer',
+ 'TOKEN_SERIALIZER': 'articles.api.serializers.TokenSerializer'
+
+}
+REST_AUTH_REGISTER_SERIALIZERS = {
+ 'REGISTER_SERIALIZER': 'articles.api.serializers.CustomRegisterSerializer',
+}
+
+SITE_ID = 1
+ACCOUNT_EMAIL_VERIFICATION = 'none'
+ACCOUNT_AUTHENTICATION_METHOD = 'username'
+ACCOUNT_EMAIL_REQUIRED = False
diff --git a/backend/EcoAlert/urls.py b/backend/EcoAlert/urls.py
new file mode 100644
index 0000000..ba866a8
--- /dev/null
+++ b/backend/EcoAlert/urls.py
@@ -0,0 +1,27 @@
+"""EcoAlert URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.conf.urls.static import static
+from django.contrib import admin
+from django.urls import path, include
+
+from EcoAlert import settings
+
+urlpatterns = [
+ path('rest-auth/', include('rest_auth.urls')),
+ path('rest-auth/registration/', include('rest_auth.registration.urls')),
+ path('admin/', admin.site.urls),
+ path('api/', include('articles.api.urls'))
+ ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/backend/EcoAlert/wsgi.py b/backend/EcoAlert/wsgi.py
new file mode 100644
index 0000000..d31e423
--- /dev/null
+++ b/backend/EcoAlert/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for EcoAlert 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/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'EcoAlert.settings')
+
+application = get_wsgi_application()