Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 1.03 KB

File metadata and controls

74 lines (50 loc) · 1.03 KB

Conjur-Go

https://github.com/pkcwong/conjur-go

GitWorkflow

A full stack boilerplate with Golang + ReactJS.

Prerequisites and Installation

Install the following frameworks and packages.

Verify the installation.

go version
node --version
yarn --version

Clone this repository.

git clone https://github.com/conjur-dev/conjur-go.git <PROJECT_NAME>
cd <PROJECT_NAME>
git submodule update --init --recursive

Building backend.

go build

Building frontend.

cd client
yarn build

Development

Start the backend server, default listening on port :8080.

go run .

Start a development server for frontend, default listening on port :3000.

cd client
yarn start

Production

Create an optimized frontend production build.

cd client
yarn build

Start the backend server.

go run .