Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mjarkk/aka-timestamps
Ask Kati Anything! Time stamps generator :^)
https://github.com/mjarkk/aka-timestamps
Last synced: about 1 month ago
JSON representation
Ask Kati Anything! Time stamps generator :^)
- Host: GitHub
- URL: https://github.com/mjarkk/aka-timestamps
- Owner: mjarkk
- License: mit
- Created: 2020-08-31T21:04:02.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-04T18:47:57.000Z (about 4 years ago)
- Last Synced: 2024-04-15T10:06:38.102Z (7 months ago)
- Language: Go
- Homepage: aka-timestamps-git-master.mkopenga.vercel.app
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ask Kati Anything! Time stamps generator :^)
This generates timestamps for the [Ask Kati Anything!](https://www.youtube.com/playlist?list=PLMSjrqhPvOoZrz95tshKA9tIymbqxNxKn) podcast, it's a podcast filled with mental health questions and answers.
I'm not really interested in all questions so i usually search for the time stamps though sadly the makers of the podcast don't include them and for the community it's quit a bit of work so i made a small tool to automatically generate them.## Setup
```sh
# Build container
docker build -t aka-timestamps:latest .# Generate key(s)
# From: https://www.howtogeek.com/howto/30184/10-ways-to-generate-a-random-password-from-the-command-line/
tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n1# Run the container
docker run -d --env "AKA_KEYS=VERY_SECRET_KEY_HERE,OPTIONAL_SECOND_KEY,ANOTHER" -p 127.0.0.1:9090:9090 --name aka-timestamps --restart always aka-timestamps:latest
```
*For ssl use a reverse proxy. The webapp is setup using (Vercel)[https://vercel.com/]*