Ce projet a pour but de regrouper un grand nombre de plats afin d'en proposer aléatoirement aux utilisateurs lorsqu'ils cherchent quoi manger.
Backend : Django
Frontend: React
If you want to contribute to the project, please follows guilines of CONTRIBUTING.md
- Create a virtual environment
python3 -m venv .venv
- Activate the environment
source .venv/bin/activate
- Install requirements
pip install -r requirements.txt
-
Create a .env file into the frontend folder and define the api url :
VITE_API_URL="http://127.0.0.1:8000"
-
Install the frontend dependencies
npm install
- Start the servers
npm run dev
python3 manage.py runserver