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