From a745871002174411923f51a70e7e259c55da6a61 Mon Sep 17 00:00:00 2001 From: Hugo LEVY-FALK Date: Thu, 13 Dec 2018 18:48:16 +0100 Subject: [PATCH] First commit --- .gitignore | 201 +++++++++++++++++++++++++++ Dockerfile | 7 + Pipfile | 12 ++ Pipfile.lock | 36 +++++ comet/account/__init__.py | 0 comet/account/admin.py | 3 + comet/account/apps.py | 5 + comet/account/migrations/__init__.py | 0 comet/account/models.py | 3 + comet/account/tests.py | 3 + comet/account/views.py | 3 + comet/comet/__init__.py | 0 comet/comet/settings.py | 120 ++++++++++++++++ comet/comet/urls.py | 21 +++ comet/comet/wsgi.py | 16 +++ comet/manage.py | 15 ++ comet/printer/__init__.py | 0 comet/printer/admin.py | 3 + comet/printer/apps.py | 5 + comet/printer/migrations/__init__.py | 0 comet/printer/models.py | 3 + comet/printer/tests.py | 3 + comet/printer/views.py | 3 + 23 files changed, 462 insertions(+) create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 Pipfile create mode 100644 Pipfile.lock create mode 100644 comet/account/__init__.py create mode 100644 comet/account/admin.py create mode 100644 comet/account/apps.py create mode 100644 comet/account/migrations/__init__.py create mode 100644 comet/account/models.py create mode 100644 comet/account/tests.py create mode 100644 comet/account/views.py create mode 100644 comet/comet/__init__.py create mode 100644 comet/comet/settings.py create mode 100644 comet/comet/urls.py create mode 100644 comet/comet/wsgi.py create mode 100755 comet/manage.py create mode 100644 comet/printer/__init__.py create mode 100644 comet/printer/admin.py create mode 100644 comet/printer/apps.py create mode 100644 comet/printer/migrations/__init__.py create mode 100644 comet/printer/models.py create mode 100644 comet/printer/tests.py create mode 100644 comet/printer/views.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e44a65 --- /dev/null +++ b/.gitignore @@ -0,0 +1,201 @@ + +# Created by https://www.gitignore.io/api/vim,python,django +# Edit at https://www.gitignore.io/?templates=vim,python,django + +### Django ### +*.log +*.pot +*.pyc +__pycache__/ +local_settings.py +db.sqlite3 +media + +# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/ +# in your Git repository. Update and uncomment the following line accordingly. +# /staticfiles/ + +### Django.Python Stack ### +# Byte-compiled / optimized / DLL files +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo + +# Django stuff: + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +### Python ### +# Byte-compiled / optimized / DLL files + +# C extensions + +# Distribution / packaging + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. + +# Installer logs + +# Unit test / coverage reports + +# Translations + +# Django stuff: + +# Flask stuff: + +# Scrapy stuff: + +# Sphinx documentation + +# PyBuilder + +# Jupyter Notebook + +# IPython + +# pyenv + +# celery beat schedule file + +# SageMath parsed files + +# Environments + +# Spyder project settings + +# Rope project settings + +# mkdocs documentation + +# mypy + +# Pyre type checker + +### Python Patch ### +.venv/ + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# End of https://www.gitignore.io/api/vim,python,django diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5cc6b19 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3 +ENV PYTHONUNBUFFERED 1 +RUN mkdir /django +ADD . /django/ +WORKDIR /django +RUN pip install -r requirements.txt +CMD sleep 5; python manage.py migrate; python manage.py collectstatic --noinput; gunicorn comet.wsgi -b 0.0.0.0:8000 diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..21bc4e8 --- /dev/null +++ b/Pipfile @@ -0,0 +1,12 @@ +[[source]] +name = "pypi" +url = "https://pypi.org/simple" +verify_ssl = true + +[dev-packages] + +[packages] +django = "*" + +[requires] +python_version = "3.6" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..c05a7fb --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,36 @@ +{ + "_meta": { + "hash": { + "sha256": "68309cd71a258c30a39567fce09a09ad5c4ff0bdc85b6fba22b47598c985c883" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.6" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "django": { + "hashes": [ + "sha256:068d51054083d06ceb32ce02b7203f1854256047a0d58682677dd4f81bceabd7", + "sha256:55409a056b27e6d1246f19ede41c6c610e4cab549c005b62cbeefabc6433356b" + ], + "index": "pypi", + "version": "==2.1.4" + }, + "pytz": { + "hashes": [ + "sha256:31cb35c89bd7d333cd32c5f278fca91b523b0834369e757f4c5641ea252236ca", + "sha256:8e0f8568c118d3077b46be7d654cc8167fa916092e28320cde048e54bfc9f1e6" + ], + "version": "==2018.7" + } + }, + "develop": {} +} diff --git a/comet/account/__init__.py b/comet/account/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/comet/account/admin.py b/comet/account/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/comet/account/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/comet/account/apps.py b/comet/account/apps.py new file mode 100644 index 0000000..f7b1d19 --- /dev/null +++ b/comet/account/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class AccountConfig(AppConfig): + name = 'account' diff --git a/comet/account/migrations/__init__.py b/comet/account/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/comet/account/models.py b/comet/account/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/comet/account/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/comet/account/tests.py b/comet/account/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/comet/account/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/comet/account/views.py b/comet/account/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/comet/account/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/comet/comet/__init__.py b/comet/comet/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/comet/comet/settings.py b/comet/comet/settings.py new file mode 100644 index 0000000..cef3080 --- /dev/null +++ b/comet/comet/settings.py @@ -0,0 +1,120 @@ +""" +Django settings for comet project. + +Generated by 'django-admin startproject' using Django 2.1.4. + +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 = 'i*l535ur=4$vbirl+#f!lg^5$863zbakwti=425)4h6gz_7il+' + +# 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', +] + +MIDDLEWARE = [ + '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 = 'comet.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + '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 = 'comet.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/' diff --git a/comet/comet/urls.py b/comet/comet/urls.py new file mode 100644 index 0000000..0e4eb18 --- /dev/null +++ b/comet/comet/urls.py @@ -0,0 +1,21 @@ +"""comet 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.contrib import admin +from django.urls import path + +urlpatterns = [ + path('admin/', admin.site.urls), +] diff --git a/comet/comet/wsgi.py b/comet/comet/wsgi.py new file mode 100644 index 0000000..5167a09 --- /dev/null +++ b/comet/comet/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for comet 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', 'comet.settings') + +application = get_wsgi_application() diff --git a/comet/manage.py b/comet/manage.py new file mode 100755 index 0000000..f32198f --- /dev/null +++ b/comet/manage.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == '__main__': + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'comet.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) diff --git a/comet/printer/__init__.py b/comet/printer/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/comet/printer/admin.py b/comet/printer/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/comet/printer/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/comet/printer/apps.py b/comet/printer/apps.py new file mode 100644 index 0000000..62de645 --- /dev/null +++ b/comet/printer/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class PrinterConfig(AppConfig): + name = 'printer' diff --git a/comet/printer/migrations/__init__.py b/comet/printer/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/comet/printer/models.py b/comet/printer/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/comet/printer/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/comet/printer/tests.py b/comet/printer/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/comet/printer/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/comet/printer/views.py b/comet/printer/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/comet/printer/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.