Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 701 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 701 Bytes

Sample Golang To Do app

The application code is based on a blog published by Emmanuel John.

Running

export PGUSER=<pg user> # defaults to postgres
export PGPASSWORD=<pg password>
export PGSSLMODE=<ssl mode> # defaults to require
export PGHOST=<pg host> # defaults to localhost:6432
export DBNAME=<db name> # defaults to mydb

Updating the app image

This applicatio is used by various demos. Build and push an updated image any time you make a change. The image is published at https://hub.docker.com/repository/docker/syntasso/sample-todo-app.