https://github.com/theomer77/stream-thing
A video streaming platform, similar to Twitch. But probably not as good.
https://github.com/theomer77/stream-thing
livekit nextjs react
Last synced: over 1 year ago
JSON representation
A video streaming platform, similar to Twitch. But probably not as good.
- Host: GitHub
- URL: https://github.com/theomer77/stream-thing
- Owner: TheOmer77
- Created: 2023-12-17T18:47:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-02T09:52:12.000Z (almost 2 years ago)
- Last Synced: 2024-10-25T10:43:15.264Z (over 1 year ago)
- Topics: livekit, nextjs, react
- Language: TypeScript
- Homepage: https://streamthing.vercel.app
- Size: 1.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stream Thing
This is a platform that allows you to livestream video, and watch streams by other users. It's similar to Twitch, though I guess it's not as good.
Technologies used in this project include:
- [React](https://react.dev/) and [Next.js](https://nextjs.org/)
- [Tailwind CSS](https://tailwindcss.com/) and [shadcn/ui](https://ui.shadcn.com/)
- [Clerk](https://clerk.com/) for auth
- [LiveKit](https://livekit.io/) for live video streaming
- [UploadThing](https://uploadthing.com/) for uploading stream thumbnails
- [Postgres](https://www.postgresql.org/) DB
- [Prisma ORM](https://www.prisma.io/)
- [Docker](https://www.docker.com/) compose in local development (runs the app itself, an Ngrok service, and Prisma studio)
## Prerequisites
- Nodejs 20
- Docker
## Getting Started
- First, copy the content of `.env.example` into a new `.env` file, and fill in all missing values.
- Install all dependencies:
```bash
pnpm i
```
- To run all services:
```bash
docker compose up -d
```
The app will be available at [localhost:3000](http://localhost:3000), and also at the specified `NGROK_DOMAIN`.
To run just the app and no other services, only at [localhost:3000](http://localhost:3000):
```bash
pnpm dev
```