Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 513 Bytes

README.md

File metadata and controls

47 lines (31 loc) · 513 Bytes

Chapter: Frontend Repo

Infrastructure

Create the virtual environment and install dependencies

make init

Activate the virtual environment

source .venv/bin/activate

Run the tests

make test

Help with Make recipes

make help

Frontend

Install the dependencies

cd app && npm install

Run the application in localhost

cd app && npm run dev

Build the application

cd app && npm run build