A website for my game dev stuff that supports chat, etc.
Find a file
2025-06-03 15:08:19 -04:00
migrations Have a mostly working API server in go that's talking to streams/index.html and related pages. 2025-05-31 14:12:08 -04:00
public Have a mostly working API server in go that's talking to streams/index.html and related pages. 2025-05-31 14:12:08 -04:00
scratchpad More testing of the sqlx and squirrel database system, then added in goose for migrations. Pretty close to making a first version api. 2025-05-31 00:10:22 -04:00
.gitignore First commit of most of the pages laid out for the next phase. 2025-05-27 22:57:54 -04:00
go.mod Added Air to the project to get automatic restarts. 2025-06-03 15:08:19 -04:00
go.sum Added Air to the project to get automatic restarts. 2025-06-03 15:08:19 -04:00
LICENSE Initial commit 2025-05-27 16:07:16 +02:00
main.go Added Air to the project to get automatic restarts. 2025-06-03 15:08:19 -04:00
Makefile Added Air to the project to get automatic restarts. 2025-06-03 15:08:19 -04:00
README.md Install godoc for great docs goodness. 2025-06-03 14:50:59 -04:00
setup.sql Have a mostly working API server in go that's talking to streams/index.html and related pages. 2025-05-31 14:12:08 -04:00

zedshaw.games

This is a learning projects for me to learn Go. It's a simple website that serves past stream information, a place to post links during stream, and the games I've made while live streaming.

Getting godoc To Work

There's a built-in command go doc but there's also a more advanced tool by Google called godoc. I know, amazing naming. Anyway, to get it you do this:

go get --tool go.googlesource.com/tools/godoc@latest

You can then run it and start indexing everything you've installed and also yourprojects packages, plus get a nice web browser based search page to view the docs:

go tool godoc -http=localhost:6060 -index

NOTE: Google doesn't know how the internet works so you have to use localhost:PORT and not 127.0.0.1:PORT when you run this.

After that it'll take some time to index everything but you can already start browsing the APIs you need, and your project's stuff is in the Third Party section.