Front-end:
# Go inside the directory
cd src/client
# Install dependencies (No need after first time)
npm install
# Start development server
npm run startDocumentation:
# Go inside the directory
cd src/docs
# Install dependencies (No need after first time)
npm install
# Start development server
npm startBack-end:
# Go inside the directory
cd src/server
# Install dependencies (No need after first time)
npm install
# Start development server
npm run devPostgres:
# IF you need to reset db, do this first
docker-compose down
# Go inside the directory
docker-compose up -dCypress:
# Start Cypress
npm run cypress:openPrettier:
# In the root directory
npm run prettier:write