Skip to content

Latest commit

 

History

History
69 lines (47 loc) · 817 Bytes

README.md

File metadata and controls

69 lines (47 loc) · 817 Bytes

Project

How to run

Development mode

Front-end:

# Go inside the directory
cd src/client

# Install dependencies (No need after first time)
npm install

# Start development server
npm run start

Documentation:

# Go inside the directory
cd src/docs

# Install dependencies (No need after first time)
npm install

# Start development server
npm start

Back-end:

# Go inside the directory
cd src/server

# Install dependencies (No need after first time)
npm install

# Start development server
npm run dev

Postgres:

# IF you need to reset db, do this first
docker-compose down

# Go inside the directory
docker-compose up -d

Cypress:

# Start Cypress
npm run cypress:open

Prettier:

# In the root directory
npm run prettier:write