https://github.com/senchabot-opensource/monorepo
Open source Discord bot and Twitch bot. Web App uses NextJS 14, Server Actions, RSC, Tailwind CSS, Shadcn, Sonner, Zod and Authjs
https://github.com/senchabot-opensource/monorepo
discord-bot go golang nextjs reactjs senchabot shadcn-ui tailwindcss twitch-bot typescript web-application
Last synced: 2 months ago
JSON representation
Open source Discord bot and Twitch bot. Web App uses NextJS 14, Server Actions, RSC, Tailwind CSS, Shadcn, Sonner, Zod and Authjs
- Host: GitHub
- URL: https://github.com/senchabot-opensource/monorepo
- Owner: senchabot-opensource
- License: gpl-3.0
- Created: 2023-03-13T00:10:54.000Z (about 3 years ago)
- Default Branch: dev
- Last Pushed: 2026-01-04T20:09:37.000Z (2 months ago)
- Last Synced: 2026-01-12T05:37:04.733Z (2 months ago)
- Topics: discord-bot, go, golang, nextjs, reactjs, senchabot, shadcn-ui, tailwindcss, twitch-bot, typescript, web-application
- Language: Go
- Homepage: https://senchabot.app
- Size: 2.81 MB
- Stars: 98
- Watchers: 3
- Forks: 21
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-shadcnui - Github
README
# Senchabot Monorepo
Open source bots for Discord, Twitch, and a web dashboard.
## Monorepo Structure
- `apps/` - Application entrypoints (bots, web dashboard)
- `pkg/` - Shared Go packages
- `helper/` - Utility scripts and helpers
- `service/` - Service layer code
- `model/` - Data models
- `config/` - Configuration files
- `db/` - Database-related files
## Prerequisites
- Git
- Go 1.24 or higher
- Node.js 18 or higher
- npm, pnpm, or yarn
- Docker & Docker Compose
## Getting Started
1. **Clone the repository**
```sh
git clone https://github.com/senchabot-opensource/monorepo.git
cd monorepo
```
2. **Set up environment variables**
- Copy `.env.example` files to `.env` in each app or service as needed.
- Fill in required values.
3. **Install dependencies**
- For Go apps:
```sh
go mod download
```
- For web app:
```sh
cd apps/web
npm install # or pnpm install
```
4. **Start services**
- Start database and dependencies:
```sh
docker-compose up -d
```
5. **Run apps**
- See each app's README for specific instructions.
## Documentation
- [Web App](./apps/web/README.md)
- [Discord Bot](./apps/discord-bot/README.md)
- [Twitch Bot](./apps/twitch-bot/README.md)
## Contributing
Contributions are always welcome! Please read the [contribution guidelines](./CONTRIBUTING.md) first.