Table of Contents
Roman digital clock, using Golang and React
- Prequisite: Docker installed
- Pulls images from dockerhub by default. To build from local changes, specify --build
- For Windows (not using WSL / Bash), subsitute powershell script run.ps1 for run.sh below
./run.sh
./run.sh --build
./run.sh stop
All instructions below assume brew package manager (available for MacOS and Linux (including Windows WSL)
- Tested on go 1.19, node 16.17.0. The steps below will install these or newer versions.
- brew package manager assumed (available for MacOS, Linux / WSL)
brew install go
brew install nvm
nvm install --lts
cd frontend
npm install
cd server
go run main.go
cd frontend
npm start