- Clone this repo, enter it
- Run command
npm install - NB: To launch the backend server, you'll need an environment file with database credentials. You'll find a template one in
backend/.env.sample
migrate: Run the database migration scriptdev: Starts both servers (frontend + backend) in one terminaldev-front: Starts the React frontend serverdev-back: Starts the Express backend server
- Concurrently : Allows for several commands to run concurrently in the same CLI
- Vite : Alternative to Create-React-App, packaging less tools for a more fluid experience
- Nodemon : Allows to restart the server everytime a .js file is udated