An open API service indexing awesome lists of open source software.

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

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
```