Skip to content

Latest commit

 

History

History

demo

SQLog Demo

You can view the current version of the SQLog demo at the links below:

The demo project captures all mouse movements and sends them to the server, which logs the received parameters.

SQLog-demo.webm

Build Docker (To deploy on render.com)

  • GO_TAGS=mattn: Use github.com/mattn/go-sqlite3 driver
  • GO_TAGS=modernc: Use modernc.org/sqlite driver
docker build --build-arg PROJECT_VERSION=1.0.0 --build-arg GO_TAGS=mattn -t nidorx/sqlog-demo:latest .

# run
docker run -p 8080:8080 nidorx/sqlog-demo:latest

# publish
docker images nidorx/sqlog-demo
docker push nidorx/sqlog-demo:latest