From 28438725c7e978f4fdb2072abd47c5a3443dcc98 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Wed, 25 Jun 2025 22:52:33 +0100 Subject: [PATCH] Compile to `gonotes` --- .gitignore | 1 + Makefile | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1877c70..53ac819 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ main saved_notes static conf.toml +gonotes diff --git a/Makefile b/Makefile index a1efc1b..5f145c6 100644 --- a/Makefile +++ b/Makefile @@ -2,5 +2,4 @@ all: build build: go run cmd/fetch-static/main.go - go build cmd/server/main.go - + go build -o gonotes cmd/server/main.go