docs: adding readme.md
This commit is contained in:
5
README.md
Normal file
5
README.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Gotes
|
||||||
|
|
||||||
|
A simple golang based notes application
|
||||||
|
|
||||||
|
## Current state
|
||||||
4
justfile
4
justfile
@@ -16,12 +16,12 @@ build: clean
|
|||||||
build-server:
|
build-server:
|
||||||
@echo "Building the isolated server..."
|
@echo "Building the isolated server..."
|
||||||
@rm -f {{ build_path }}/{{ server_exec_name }}
|
@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:
|
build-simplecli:
|
||||||
@echo "Building the simple cli..."
|
@echo "Building the simple cli..."
|
||||||
@rm -f {{ build_path }}/{{ simplecli_exec_name }}
|
@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
|
# Run tests with short output
|
||||||
|
|||||||
Reference in New Issue
Block a user