ajout des models et des url

This commit is contained in:
maxime 2019-05-27 08:04:29 +02:00
parent e485862f8d
commit ad8c93ac21
14 changed files with 299 additions and 0 deletions

View File

@ -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

0
gpp/__init__.py Normal file
View File

122
gpp/settings.py Normal file
View File

@ -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/'

22
gpp/urls.py Normal file
View File

@ -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),
]

16
gpp/wsgi.py Normal file
View File

@ -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()

0
harbour/__init__.py Normal file
View File

3
harbour/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
harbour/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class PortConfig(AppConfig):
name = 'port'

View File

66
harbour/models.py Normal file
View File

@ -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.

3
harbour/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

9
harbour/urls.py Normal file
View File

@ -0,0 +1,9 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]

5
harbour/views.py Normal file
View File

@ -0,0 +1,5 @@
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world.")

21
manage.py Executable file
View File

@ -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()