Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/streamplace/streamplace
Streamplace is an open-source compositor and CMS for live video
https://github.com/streamplace/streamplace
helm kubernetes lerna video-recording webgl webpack
Last synced: 14 days ago
JSON representation
Streamplace is an open-source compositor and CMS for live video
- Host: GitHub
- URL: https://github.com/streamplace/streamplace
- Owner: streamplace
- License: apache-2.0
- Created: 2016-06-02T23:55:41.000Z (over 8 years ago)
- Default Branch: next
- Last Pushed: 2018-07-27T02:24:38.000Z (over 6 years ago)
- Last Synced: 2024-10-27T22:06:42.366Z (18 days ago)
- Topics: helm, kubernetes, lerna, video-recording, webgl, webpack
- Language: JavaScript
- Homepage: https://stream.place/
- Size: 32 MB
- Stars: 45
- Watchers: 11
- Forks: 16
- Open Issues: 13
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
Streamplace
An open-source compositor and CMS for live video!
Check out our Kickstarter video for examples!## Development
### Client & Server
First:
```
yarn install
```### Server
You'll need a local Kubernetes cluster. Kubernetes for Docker for Mac and minikube should both work.
You'll also need helm on your PATH.
To boot everything up initially:
```
npm run env:dev
npm run server
```To view output logs on local Kibana:
```
npm run server:logs
```Then, after you've made some local changes and you want to deploy them to the cluster without
rebuilding everything:```
npm run server:apply [packages you want to deploy]
```### Client Development
If you want to develop the client against the staging server, that's fine, just run:
```
npm run env:next
```Then, to boot up the web, Electron, and React Native client apps:
```
npm run client
```Electron, Web, and the iOS Simulator should work out of the box. To get Android emulators working
you'll probably need to forward port 80 on the device with `adb`.```
adb root
adb reverse tcp:80 tcp:80
```### Development Environment Known Issues
1. Sometimes stuff just doesn't come up.
* Usually it's `sp-api-server` or `sp-schema` for whatever reason. Usually it can be resolved with a `kubectl get pods` and `kubectl delete pod [malfunctioning-pod-name]`.
1. Sometimes `sp-frontend` takes a ton of time to compile and makes the computer's fan spin like crazy.
* Yup. This one is currently a mystery to me. Deleting the `sp-frontend` pod usually speeds it back up. If we can track this one down, potentially we can file a bug with Docker for Mac or create-react-app.