Go to file
max/sooulix edaabc5724 wip 2024-07-15 11:01:34 +02:00
doc added new_stay route and form 0 for boat search 2019-06-23 14:42:06 +02:00
gpp insurance form, person form, add dict template tags 2019-06-25 23:43:23 +02:00
port wip 2024-07-15 11:01:34 +02:00
route_template enhance script, rm .tmp 2019-06-21 12:09:58 +02:00
route_template.tmp added new_stay route and form 0 for boat search 2019-06-23 14:42:06 +02:00
static can create boats for new_stay 2019-08-03 22:44:57 +02:00
.gitignore updates des forms, models, ajout de dépendances 2019-06-05 20:08:12 +02:00
README.rst change rst block 2019-05-27 08:26:05 +02:00
gen_route.sh add person form, possibility to set an "employee" relation 2019-06-21 14:02:07 +02:00
manage.py ajout des models et des url 2019-05-27 08:04:29 +02:00
requirements.txt added dependencies 2019-06-25 21:55:07 +02:00

README.rst

::

    # 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 gestion_port_plaisance
    cd gestion_port_plaisance
    ./migrate.py startapp port
    git init
    pip freeze > requirements.txt
    cat << EOF >> .gitignore
    *.pyc
    __pycache__
    *.swo
    *.swp
    EOF
    # go to (1)

    # If already created
    git clone https://git.yannweb.net/maxime-alves/gestion_port_plaisance.git
    cd ./gestion_port_plaisance
    pip install -r requirements.txt

    # (1)
    # edit gpp/settings.py according to your database preferences
    ./manage.py migrate