├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── db ├── db.go └── db_test.go ├── go.mod ├── go.sum ├── main.go └── tmpl ├── index.gmi ├── show.gmi └── stats.gmi /.gitignore: -------------------------------------------------------------------------------- 1 | *.crt 2 | *.key 3 | geddit.db 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/README.md -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/db/db.go -------------------------------------------------------------------------------- /db/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/db/db_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/main.go -------------------------------------------------------------------------------- /tmpl/index.gmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/tmpl/index.gmi -------------------------------------------------------------------------------- /tmpl/show.gmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/tmpl/show.gmi -------------------------------------------------------------------------------- /tmpl/stats.gmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitr/geddit/HEAD/tmpl/stats.gmi --------------------------------------------------------------------------------