small pixel drawing of a pufferfish vore

feeds.gay -> vore
Jes Olson j3s@c3f.net
Sat, 18 Mar 2023 19:56:06 -0700
commit

4859d5a6bfcfed65fbc29192feb21c8960a154c7

parent

e50e3d236b6c5088d782c97ade1f169810e94ebd

4 files changed, 9 insertions(+), 9 deletions(-)

jump to
M .gitignore.gitignore

@@ -1,2 +1,2 @@

-feeds.gay -feeds.gay.db +vore +vore.db
M go.modgo.mod

@@ -1,4 +1,4 @@

-module git.j3s.sh/feeds.gay +module git.j3s.sh/vore go 1.20
M readmereadme

@@ -2,10 +2,10 @@ todo

[ ] GET / logged out: - describe what feeds.gay is & why it's cool, tell ppl to sign up - discover (list of top20 most popular feeds on feeds.gay) + describe what vore is & why it's cool, tell ppl to sign up + discover (list of top20 most popular feeds on vore) logged in: - discover (list of top20 most popular feeds on feeds.gay) + discover (list of top20 most popular feeds on vore) [x] GET /login form (existing account): username & password form (new account): username & password
M site.gosite.go

@@ -5,8 +5,8 @@ "fmt"

"net/http" "strings" - "git.j3s.sh/feeds.gay/auth" - "git.j3s.sh/feeds.gay/sqlite" + "git.j3s.sh/vore/auth" + "git.j3s.sh/vore/sqlite" "golang.org/x/crypto/bcrypt" )

@@ -20,7 +20,7 @@ }

// New returns a fully populated & ready for action Site func New() *Site { - title := "feeds.gay" + title := "vore" s := Site{ title: title, db: sqlite.New(title + ".db"),