repo hygiene: move secrets to pass; add examples; misc updates

This commit is contained in:
2026-02-18 01:37:46 -08:00
committed by Kat Huang
parent a5f3ffc21b
commit 6f4c5e120d
15 changed files with 145 additions and 173 deletions

View File

@@ -71,7 +71,7 @@ echo " dotfiles: $DOTFILES_REV"
echo "Building container from flake..."
nix build "$NIXOS_DIR#${INSTANCE}-org-agenda-api" -o "result-${INSTANCE}-org-agenda-api" --refresh \
--option extra-substituters "https://org-agenda-api.cachix.org" \
--option extra-trusted-public-keys "org-agenda-api.cachix.org-1:MzzlSeQpJ/erP9/qYU6EiS4LM4AHA/mpc8s4thtEvNI="
--option extra-trusted-public-keys "org-agenda-api.cachix.org-1:MzzlSeQpJ/erP9/qYU6EiS4LM4AHA/mpc8s4thtEvNI=" # gitleaks:allow
# Load into Docker
echo "Loading container into Docker..."

View File

@@ -5,23 +5,23 @@ user := "imalison"
# Get all todos
get-all-todos:
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/get-all-todos" | jq .
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/get-all-todos" | jq . # gitleaks:allow
# Get today's agenda
get-todays-agenda:
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/get-todays-agenda" | jq .
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/get-todays-agenda" | jq . # gitleaks:allow
# Get agenda (day view)
agenda:
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/agenda" | jq .
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/agenda" | jq . # gitleaks:allow
# Get agenda files
agenda-files:
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/agenda-files" | jq .
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/agenda-files" | jq . # gitleaks:allow
# Get todo states
todo-states:
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/todo-states" | jq .
@curl -s -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" "{{base_url}}/todo-states" | jq . # gitleaks:allow
# Health check
health:
@@ -29,6 +29,7 @@ health:
# Create a todo
create-todo title:
# gitleaks:allow
@curl -s -X POST -u "{{user}}:$(pass show org-agenda-api/imalison | head -1)" \
-H "Content-Type: application/json" \
-d '{"title": "{{title}}"}' \