Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/belst/ovenauth
simple webhook implementation for ovenmediaengine
https://github.com/belst/ovenauth
Last synced: 8 days ago
JSON representation
simple webhook implementation for ovenmediaengine
- Host: GitHub
- URL: https://github.com/belst/ovenauth
- Owner: belst
- Created: 2021-12-19T15:36:59.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-14T15:32:31.000Z (2 months ago)
- Last Synced: 2024-09-15T01:33:23.101Z (2 months ago)
- Language: TypeScript
- Size: 326 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# OvenMediaEngine webhook server
This is super simple and not fully featured at all.
It lets only registered users ingest streams.
Login and logout are useless for now.
### Configuration
It uses the following env variables to configure the server.
You can store the configuration in a .env aswell```bash
DATABASE_URL="postgres://user:password@host:port/dbname" # Database connection, only pg supported for now
HOST="localhost" # Host to listen on
PORT=8080 # Port to listen on
SECRET_CODE="meme" # Code u need to provide as `secret_code` in your register POST
```