From a6a9ac2a47de03242d6debc3b90b4158fc435b86 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Tue, 4 Aug 2026 20:31:46 -0400 Subject: [PATCH] That line in .gitignore ignores more than sqlite. --- .gitignore | 1 + Makefile | 1 + TODO.txt | 1 + 3 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index de00f02..dd824d6 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ public webapp bin static/style.css +db.sqlite3* diff --git a/Makefile b/Makefile index 3294018..8e36cc3 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ site: go tool ssgod test: build + mkdir -p bin/tests go test ./tests/... -c -o bin/tests ./bin/tests/admin.test ./bin/tests/auth.test diff --git a/TODO.txt b/TODO.txt index cc8f8c4..5ba6766 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,3 +1,4 @@ * The qmgr needs to actually manage the queue, currently it's just a little testing tool. * Probably also need an email testing tool that can send sample emails off the cli. * Try to remove code.js and either bring the functionality to jzed.js or not use it. +* Admin tests need to make a user for admin first.