2022-09-08 18:32:08 +00:00
|
|
|
weave:
|
2023-01-01 21:25:32 +00:00
|
|
|
srcweave --formatter srcweave-format --weave docs/ ReadMe.md security/Authentication.md EnvironmentVariables.md Dependencies.md Server.md Streaming.md ThreatModel.md Client.md
|
2023-01-01 01:23:52 +00:00
|
|
|
util/removefencedcode.py
|
2022-09-08 18:32:08 +00:00
|
|
|
tangle:
|
2023-01-22 00:55:58 +00:00
|
|
|
srcweave --formatter srcweave-format --tangle smartkeyboard/ ReadMe.md security/Authentication.md EnvironmentVariables.md Dependencies.md Server.md Streaming.md ThreatModel.md Client.md tools/Tools.md tools/Cowsay.md tools/Editor.md tools/HelloWorld.md
|
2022-09-08 18:32:08 +00:00
|
|
|
clean:
|
|
|
|
rm -rf docs
|
|
|
|
find smartkeyboard/ -type f -not -name "*_test.go" -delete
|
|
|
|
rm go.mod
|
|
|
|
rm go.sum
|
|
|
|
|
2022-12-31 06:34:03 +00:00
|
|
|
build: tangle
|
|
|
|
- cd smartkeyboard && go mod init keyboard.voidnet.tech
|
|
|
|
- cd smartkeyboard && go mod tidy
|
|
|
|
- cd smartkeyboard && go build -o ../bin/keyboard
|
|
|
|
|
|
|
|
|
2022-09-08 18:32:08 +00:00
|
|
|
test: tangle
|
2022-09-13 17:28:40 +00:00
|
|
|
-cd smartkeyboard && go mod init keyboard.voidnet.tech
|
|
|
|
-cd smartkeyboard && go mod tidy
|
|
|
|
-cd smartkeyboard && go test -v ./...
|
2022-09-08 18:32:08 +00:00
|
|
|
|
|
|
|
all: weave tangle
|