dump
All checks were successful
Hello World / test (push) Successful in 12s

This commit is contained in:
plasmagoat 2025-07-05 11:12:20 +02:00
parent 4ed9ba0d24
commit a90630ecb6
98 changed files with 2063 additions and 729 deletions

View file

@ -23,11 +23,11 @@ secrets/
### ✅ Encrypt a **new secret file**
```bash
sops --age <YOUR-AGE-PUBKEY> -e > secrets/myservice/secrets.yaml
sops --age <YOUR-AGE-PUBKEY> secrets/myservice/secrets.yml
````
Example:
```bash
sops --age $(cat ~/.config/sops/age/keys.txt | grep public) -e > secrets/forgejo/secrets.yaml
sops --age $(cat ~/.config/sops/age/keys.txt | grep public) -e > secrets/forgejo/secrets.yml
```
> Press `i` to enter edit mode if prompted, or fill it using YAML format:
```yaml
@ -40,7 +40,7 @@ db-password: supersecret
### ✏️ Edit secrets in an existing file
```bash
sops secrets/forgejo/secrets.yaml
sops secrets/forgejo/secrets.yml
```
---