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-upOpen the app:
http://localhost:4200
Check the API:
curl http://localhost:3001/api/healthStop development containers:
make docker-downRun production preview containers:
make docker-up-prodCheck the app and API through the frontend preview server:
curl http://localhost:4200/api/healthStop production preview containers:
docker compose -f docker-compose.prod.yml down