Web Application for sharing photos and interact with other users.
In webui folder:
npm install
docker build -t wasa-photo-backend:latest -f Dockerfile.backend .
docker build -t wasa-photo-frontend:latest -f Dockerfile.frontend .
docker run -it --rm -p 3000:3000 wasa-photo-backend:latest
docker run -it --rm -p 8080:80 wasa-photo-frontend:latest
If you're not using the WebUI, or if you don't want to embed the WebUI into the final executable, then:
go build ./cmd/webapi/
If you're using the WebUI and you want to embed it into the final executable:
./open-npm.sh
# (here you're inside the NPM container)
npm run build-embed
exit
# (outside the NPM container)
go build -tags webui ./cmd/webapi/
See LICENSE.