docs: adding readme.md
This commit is contained in:
4
justfile
4
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
|
||||
|
||||
Reference in New Issue
Block a user