this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build(toolbox): add packaging and sample settings

+29
+10
flake.nix
··· 48 48 kubernetes 49 49 ] 50 50 )) 51 + 52 + (pkgs.buildGoModule { 53 + pname = "toolbox"; 54 + version = "0.1.0"; 55 + src = builtins.path { 56 + path = ./toolbox; 57 + name = "toolbox-src"; 58 + }; 59 + vendorHash = "sha256-wNp4c6d9W/7RUuElMLiQEHca6ctvnFBZB/zb8MqbVr4="; 60 + }) 51 61 ]; 52 62 }; 53 63 });
+14
settings.yaml
··· 1 + secrets: 2 + secret/khuedoan/notes/password: 3 + VALUE: 4 + type: random 5 + length: 32 # optional, default 32 6 + secret/git/deploy: 7 + admin: 8 + type: ssh 9 + secret/platform/cloudflare: 10 + API_TOKEN: 11 + type: manual 12 + description: | 13 + Enter Cloudflare API token: 14 + (Generate it from https://dash.cloudflare.com -> Manage account -> Account API tokens)
+5
toolbox/Makefile
··· 1 + .PHONY: test 2 + 3 + test: 4 + go vet ./... 5 + go test -race ./...