Skip to content

HE-Arc/anansi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

de43b88 · May 3, 2023
May 2, 2023
May 3, 2023
Mar 6, 2023
May 3, 2023
Mar 6, 2023
May 2, 2023
May 2, 2023
May 3, 2023

Repository files navigation

Anansi

Limite-limite version HE-Arc.

Projet réalisé dans le cadre du cours de développement web de troisième année à l'HE-Arc.

Plus d'informations quant au développement sont disponibles dans le wiki.

Basic setup for dev

API Django

Install dependencies using pip environment :

cd api/
pipenv shell
pipenv install -r requirements.txt

Configuration : use and adapt the .env.example file :

cp .env.example .env

Redis database setup using Docker :

docker run -p 6379:6379 -d redis:5

Apply database migrations :

python manage.py migrate

Run dev server :

python manage.py runserver

Frontend

Install dependencies :

cd frontend/
npm install

Configuration : use and adapt the .env.example file :

cp .env.example .env

Run dev server :

quasar run dev

Build the project for prod :

quasar build