rebooting project sans history
This commit is contained in:
commit
874b1632c7
8 changed files with 1285 additions and 0 deletions
32
README.md
Normal file
32
README.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# rss
|
||||
|
||||
collection of rss-related tools
|
||||
|
||||
```bash
|
||||
docker compose -f docker-compose.yml up -d
|
||||
```
|
||||
|
||||
example secrets file:
|
||||
|
||||
```bash
|
||||
# secrets.sh
|
||||
export RSS_HOST="http://localhost:8888"
|
||||
export REDDIT_CLIENT_ID="blah"
|
||||
export REDDIT_CLIENT_SECRET="blah"
|
||||
export REDDIT_USERNAME="blah"
|
||||
export REDDIT_PASSWORD="bla"
|
||||
```
|
||||
|
||||
editing secrets:
|
||||
|
||||
```bash
|
||||
age --decrypt -i path/to/key -o secrets.sh secrets.sh.age
|
||||
age -r $RECIPIENT -o secrets.sh.age secrets.sh
|
||||
```
|
||||
|
||||
example envrc:
|
||||
|
||||
```bash
|
||||
# .envrc
|
||||
age --decrypt -i path/to/key -o secrets.sh secrets.sh.age && source secrets.sh && rm secrets.sh
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue