https://github.com/b-goodman/video-api
upload, manage and serve video content
https://github.com/b-goodman/video-api
mongoose nodejs typscript
Last synced: about 1 year ago
JSON representation
upload, manage and serve video content
- Host: GitHub
- URL: https://github.com/b-goodman/video-api
- Owner: b-goodman
- Created: 2019-10-11T03:40:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T13:04:06.000Z (over 3 years ago)
- Last Synced: 2025-01-24T18:35:06.909Z (about 1 year ago)
- Topics: mongoose, nodejs, typscript
- Language: TypeScript
- Size: 346 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blog
```bash
mongod #start db sever
redis-server #start redis
yarn start #start watch compiler + copies assets
```
```bash
#create rsa key pairs.
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key -q -N "" # Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub
mv jwtRS256.key private.key
mv jwtRS256.key.pub public.key
```