Skip to content

Real-Life-IaC/ch-frontend

Repository files navigation

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