Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 741 Bytes

File metadata and controls

55 lines (39 loc) · 741 Bytes

Quick Start

git clone git@github.com:evscoder/react-app.git my-new-project
cd my-new-project
rm -rf .git
git init
cp .env.example .env
git add .
git commit -m "Initial project from template"

Run development containers:

make docker-up

Open the app:

http://localhost:4200

Check the API:

curl http://localhost:3001/api/health

Stop development containers:

make docker-down

Production Preview

Run production preview containers:

make docker-up-prod

Check the app and API through the frontend preview server:

curl http://localhost:4200/api/health

Stop production preview containers:

docker compose -f docker-compose.prod.yml down