Skip to content

Latest commit

 

History

History
42 lines (22 loc) · 774 Bytes

README.md

File metadata and controls

42 lines (22 loc) · 774 Bytes

MyMenus

Projet

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.

Technologies

Backend : Django

Frontend: React

Contribitions

If you want to contribute to the project, please follows guilines of CONTRIBUTING.md

Set up

  1. Create a virtual environment

python3 -m venv .venv

  1. Activate the environment

source .venv/bin/activate

  1. Install requirements

pip install -r requirements.txt

  1. Create a .env file into the frontend folder and define the api url : VITE_API_URL="http://127.0.0.1:8000"

  2. Install the frontend dependencies

npm install

  1. Start the servers

npm run dev

python3 manage.py runserver