https://github.com/aravindanve/livemeet-server-go
Web server for a simple video conferencing app written in golang with livekit.
https://github.com/aravindanve/livemeet-server-go
go golang livekit video-conferencing
Last synced: 19 days ago
JSON representation
Web server for a simple video conferencing app written in golang with livekit.
- Host: GitHub
- URL: https://github.com/aravindanve/livemeet-server-go
- Owner: aravindanve
- Archived: true
- Created: 2022-07-02T07:09:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T03:47:55.000Z (almost 3 years ago)
- Last Synced: 2025-03-01T00:12:07.236Z (7 months ago)
- Topics: go, golang, livekit, video-conferencing
- Language: Go
- Homepage:
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LiveMeet Server
Web server for a simple video conferencing app written in golang with livekit.
## Core Features
- [x] Setup unit and integration tests
- [x] Sign in with Google
- [x] Users, auth & session
- [x] Meetings & participants
- [x] LiveKit integration
- [x] Github actions workflow
- [ ] Kubernetes manifests or helm chart## Additional Features
- [ ] Admit guests into the meeting as guest
- [ ] Persist participants in meeting
- [ ] Cloud recording
- [ ] Auto generate API documentation?## Develop
```bash
make all # runs test, e2e and build
make build # builds the binary
make clean # cleans the binary
make test # runs unit tests
make e2e # runs integration tests
make run # builds and runs binary
make dev # runs the source and watches for changes
```