diff --git a/README.rst b/README.rst index e69de29..8e31d2c 100644 --- a/README.rst +++ b/README.rst @@ -0,0 +1,27 @@ +# DB installation +pacman -S postgresql +su - postgres -c "initdb --local en_US.UTF-8 -D '/var/lib/postgres/data'" +systemctl restart posgresql +su - postgres -c "createuser gpp" +su - postgres -c "createdb -O gpp gpp" + +# Python installation +pacman -S python3 +virtualenv -p /usr/bin/python3.7 ~/.pyvenv/gpp +source ~/.pyvenv/gpp/bin/activate + +# Project initialization (if not already created) +pip install Django psycopg2 +django-admin startproject gpp +django-admin startapp harbour +# edit gpp/settings.py according to your database preferences +./manage.py migrate +cd gpp +git init + +# If already created +git clone https://git.yannweb.net/maxime-alves/gestion_port_plaisance.git +cd ./gestion_port_plaisance +pip install -r requirements.txt +# edit gpp/settings.py according to your database preferences +./manage.py migrate diff --git a/gpp/__init__.py b/gpp/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gpp/settings.py b/gpp/settings.py new file mode 100644 index 0000000..f06900d --- /dev/null +++ b/gpp/settings.py @@ -0,0 +1,122 @@ +""" +Django settings for gpp project. + +Generated by 'django-admin startproject' using Django 2.2.1. + +For more information on this file, see +https://docs.djangoproject.com/en/2.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/2.2/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.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'd%5zgrm78ilrvhiobioi7v#yv(&6c=#ytwgy+^1i^y@r1o$-h9' + +# 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 = 'gpp.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 = 'gpp.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/2.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql', + 'NAME': 'gpp', + 'USER': 'gpp', + 'PASSWORD': 'gpppassword', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/2.2/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.2/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'Europe/Paris' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/2.2/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/gpp/urls.py b/gpp/urls.py new file mode 100644 index 0000000..5a985d3 --- /dev/null +++ b/gpp/urls.py @@ -0,0 +1,22 @@ +"""gpp URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/2.2/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 include, path + +urlpatterns = [ + path('harbour/', include('harbour.urls')), + path('admin/', admin.site.urls), +] diff --git a/gpp/wsgi.py b/gpp/wsgi.py new file mode 100644 index 0000000..39e1010 --- /dev/null +++ b/gpp/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for gpp 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.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gpp.settings') + +application = get_wsgi_application() diff --git a/harbour/__init__.py b/harbour/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/harbour/admin.py b/harbour/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/harbour/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/harbour/apps.py b/harbour/apps.py new file mode 100644 index 0000000..c31c40a --- /dev/null +++ b/harbour/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class PortConfig(AppConfig): + name = 'port' diff --git a/harbour/migrations/__init__.py b/harbour/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/harbour/models.py b/harbour/models.py new file mode 100644 index 0000000..09c414b --- /dev/null +++ b/harbour/models.py @@ -0,0 +1,66 @@ +from django.db import models + +class Address(models.Model): + address = + zip_code = + city = + country = + +class Person(models.Model): + name = models.CharField(max_length=200) + surname = models.CharField(max_length=200) + address = + nationality = + email = + phone = + +class Company(models.Model): + name = + address = + siret = + +class Insurance(Company): + pass + +class Boat(models.Model): + name = + registration_num = + length = + beam = + water_draught = + tonnage = + water_tank = + model = + heating = + +class Port(models.Model): + name = + address = + +class Dock(models.Model): + num = + length = + width = + depth = + +class Plug(models.Model): + num = + amperage = + voltage = + +class Tap(models.Model): + num = + +class (models.Model): + + pub_date = models.DateTimeField('date published') + pub_date = models.DateTimeField('date published') + + +class Boat(models.Model): +class Boat(models.Model): +class Boat(models.Model): +class Boat(models.Model): +class Boat(models.Model): + +# Create your models here. diff --git a/harbour/tests.py b/harbour/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/harbour/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/harbour/urls.py b/harbour/urls.py new file mode 100644 index 0000000..6a67140 --- /dev/null +++ b/harbour/urls.py @@ -0,0 +1,9 @@ +from django.urls import path + +from . import views + +urlpatterns = [ + path('', views.index, name='index'), +] + + diff --git a/harbour/views.py b/harbour/views.py new file mode 100644 index 0000000..b24cf82 --- /dev/null +++ b/harbour/views.py @@ -0,0 +1,5 @@ +from django.shortcuts import render +from django.http import HttpResponse + +def index(request): + return HttpResponse("Hello, world.") diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..79bc1c5 --- /dev/null +++ b/manage.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gpp.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) + + +if __name__ == '__main__': + main()