- python (3.x recommended) & pip (>= 22 recommended)
- docker
- make (a command line tool to run Makefile commands)
# Put appropriate parameters inside .env.example
make install-deps
make run
# To run tests
make test
# formating
make lint
Or Using Docker
# This will install and run your project on port 8000
make docker-run
-
Install the virtualenv
-
Run the backend
make run
- node & npm
- docker
- make (a command line tool to run Makefile commands)
# Put appropriate parameters inside .env.example
make install-deps
# or with npm
npm install
make run
# or with npm
npm start
# To run tests
make test
Or Using Docker
make serve
# or with npm
npm run serve
# This will install and run your project on port 3000
make docker-run
- Install the dependencies
npm install
npm run start
npm run build
NB: To launch the frontend
, you should launch the backend
first.
Illustrative video of the project