echo-boilerplate-web-client
A Go web client boilerplate app for echo-boilerplate using the minimalist
echo framework and the following:
Requirements
Before getting started, install the following:
Required:
Optional:
Using
Setup the dev environment first:
make dev
Building & Running locally
make run
In another terminal:
make vite
Visit http://localhost:3000
in your browser.
Docker
Build
make docker-build
Run
make docker-run
Passing args
CLI:
docker run -p 3000:3000 --rm app --env-name prod
Environment variables:
docker run -p 3000:3000 -e "APP_ENV_NAME=prod" --rm app