From 5587583ed36bcb3eb638f06d942c3938f35a3193 Mon Sep 17 00:00:00 2001 From: DelphicOkami Date: Sun, 22 Mar 2026 19:35:12 +0000 Subject: [PATCH] docs: adding readme.md --- README.md | 5 +++++ justfile | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7791e43 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Gotes + +A simple golang based notes application + +## Current state \ No newline at end of file diff --git a/justfile b/justfile index f172eef..8fb015d 100644 --- a/justfile +++ b/justfile @@ -16,12 +16,12 @@ build: clean build-server: @echo "Building the isolated server..." @rm -f {{ build_path }}/{{ server_exec_name }} - go build -o {{ build_path }}/{{ server_exec_name }} -ldflags="-s -w" isolated/server/main.go + go build -o {{ build_path }}/{{ server_exec_name }} -ldflags="-s -w" cmd/server/main.go build-simplecli: @echo "Building the simple cli..." @rm -f {{ build_path }}/{{ simplecli_exec_name }} - go build -o {{ build_path }}/{{ simplecli_exec_name }} -ldflags="-s -w" isolated/simplecli/main.go + go build -o {{ build_path }}/{{ simplecli_exec_name }} -ldflags="-s -w" cmd/simplecli/main.go # Run tests with short output