https://github.com/pkcwong/conjur-go
A full stack boilerplate with Golang + ReactJS.
Install the following frameworks and packages.
Verify the installation.
go version
node --version
yarn --versionClone this repository.
git clone https://github.com/conjur-dev/conjur-go.git <PROJECT_NAME>
cd <PROJECT_NAME>
git submodule update --init --recursiveBuilding backend.
go buildBuilding frontend.
cd client
yarn buildStart the backend server, default listening on port :8080.
go run .Start a development server for frontend, default listening on port :3000.
cd client
yarn startCreate an optimized frontend production build.
cd client
yarn buildStart the backend server.
go run .