- Install npm
- Open terminal
- Navigate to frontend folder with
cd
command - Install modules with the command:
npm i
- Run the app with the command:
npm run dev
- Install python
- Open terminal
- Navigate to backend folder with
cd
command - Install virtualenv package with the command:
python -m pip install virtualenv
- Create a new environment with the command:
python -m venv myenv
- Activate the environment with the command:
Mac / Ubuntu:
source myenv/bin/activate
Windows:
myenv\Scripts\activate
- Install dependencies with the command:
python -m pip install -r requirements.txt
- Run the server with the command:
uvicorn main:app --port=8000 --reload
- For endpoint testing enter to http://127.0.0.1:8000/docs