├── .dockerignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── codeql.yml │ ├── discord-bot-deploy.yml │ └── twitch-bot-deploy.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── discord-bot │ ├── .air.toml │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── README.md │ ├── cmd │ │ └── main │ │ │ └── main.go │ ├── env.example │ ├── fly.dev.toml │ ├── fly.toml │ └── internal │ │ ├── alert │ │ └── alert.go │ │ ├── command │ │ ├── addcommand.go │ │ ├── addcommandvar.go │ │ ├── cmds.go │ │ ├── command.go │ │ ├── deletecommand.go │ │ ├── deletecommandvar.go │ │ ├── deltwitch.go │ │ ├── donottrackmymessagescommand.go │ │ ├── helpers │ │ │ └── helpers.go │ │ ├── invite.go │ │ ├── listcommandvar.go │ │ ├── purge.go │ │ ├── settwitch.go │ │ ├── sozluk.go │ │ ├── streamerlist.go │ │ ├── trackmymessagescommand.go │ │ ├── updatecommand.go │ │ └── updatecommandvar.go │ │ ├── handler │ │ ├── channeldelete.go │ │ ├── guildcreate.go │ │ ├── guilddelete.go │ │ ├── handler.go │ │ ├── helper.go │ │ ├── interactioncreate.go │ │ ├── messagecreate.go │ │ ├── messagereactionadd.go │ │ └── ready.go │ │ └── service │ │ ├── event │ │ └── event.go │ │ ├── service.go │ │ ├── streamer │ │ └── streamer.go │ │ └── webhook │ │ ├── botleave.go │ │ └── webhook.go ├── twitch-bot │ ├── .air.toml │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── README.md │ ├── client │ │ └── client.go │ ├── cmd │ │ └── main │ │ │ └── main.go │ ├── env.example │ ├── fly.toml │ └── internal │ │ ├── command │ │ ├── addcommand.go │ │ ├── addcommandalias.go │ │ ├── addcommandvar.go │ │ ├── addtimer.go │ │ ├── cmds.go │ │ ├── command.go │ │ ├── deletecommand.go │ │ ├── deletecommandalias.go │ │ ├── deletecommandvar.go │ │ ├── deletetimer.go │ │ ├── help.go │ │ ├── helpers │ │ │ ├── helpers.go │ │ │ └── helpers_test.go │ │ ├── invite.go │ │ ├── leave.go │ │ ├── listcommandvar.go │ │ ├── ping.go │ │ ├── so.go │ │ ├── sozluk.go │ │ ├── timer.go │ │ ├── timers.go │ │ ├── updatecommand.go │ │ └── updatecommandvar.go │ │ ├── handler │ │ ├── botjoin.go │ │ ├── handler.go │ │ ├── privatemessage.go │ │ ├── timer.go │ │ └── usernoticemessage.go │ │ └── service │ │ ├── service.go │ │ ├── timer │ │ └── timer.go │ │ └── webhook │ │ ├── botdepart.go │ │ ├── botjoin.go │ │ └── webhook.go └── web │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── README.md │ ├── components.json │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── prisma │ └── schema.prisma │ ├── public │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon.ico │ ├── images │ │ ├── dashboard-dark.png │ │ └── dashboard-light.png │ └── senchabot-logo.svg │ ├── src │ ├── app │ │ ├── (auth) │ │ │ └── signin │ │ │ │ ├── page.tsx │ │ │ │ ├── signin-button.tsx │ │ │ │ └── signin-form.tsx │ │ ├── (landing) │ │ │ ├── page.tsx │ │ │ └── themed-image.tsx │ │ ├── (legal) │ │ │ ├── cookie-policy │ │ │ │ └── page.tsx │ │ │ ├── eula │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── privacy-policy │ │ │ │ └── page.tsx │ │ │ └── terms-of-service │ │ │ │ └── page.tsx │ │ ├── (protected) │ │ │ ├── dashboard │ │ │ │ ├── [platform] │ │ │ │ │ └── [id] │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── @tabs │ │ │ │ │ │ │ ├── command-status-switch.tsx │ │ │ │ │ │ │ ├── commands-list.tsx │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ ├── loading.tsx │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── delete-command-button.tsx │ │ │ │ │ │ │ ├── global │ │ │ │ │ │ │ │ ├── loading.tsx │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ │ └── update-command-dialog.tsx │ │ │ │ │ │ ├── create-command-dialog.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── share-commands-button.tsx │ │ │ │ │ │ ├── entity-logs-card.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── _sidebar │ │ │ │ │ ├── bottom-nav.tsx │ │ │ │ │ ├── entities-dropdown-wrapper.tsx │ │ │ │ │ ├── entities-dropdown.tsx │ │ │ │ │ ├── main-nav.tsx │ │ │ │ │ ├── nav-link-item.tsx │ │ │ │ │ ├── sidebar.tsx │ │ │ │ │ └── user-dropdown.tsx │ │ │ │ ├── discord │ │ │ │ │ └── [id] │ │ │ │ │ │ └── event-channels │ │ │ │ │ │ ├── create-event-channel-form.tsx │ │ │ │ │ │ ├── delete-channel-button.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── joined-entities-list.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── settings │ │ │ │ │ ├── @tabs │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── privacy │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── profile │ │ │ │ │ │ ├── link-account-button.tsx │ │ │ │ │ │ ├── linked-accounts-list.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── personal-information.tsx │ │ │ │ │ └── servers │ │ │ │ │ │ ├── depart-entity-button.tsx │ │ │ │ │ │ ├── entities-list.tsx │ │ │ │ │ │ ├── join-entity-button.tsx │ │ │ │ │ │ ├── joinable-entities-list.tsx │ │ │ │ │ │ ├── joined-entities-list.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── layout.tsx │ │ │ └── error.tsx │ │ ├── api │ │ │ └── auth │ │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── layout.tsx │ │ └── robots.ts │ ├── components │ │ ├── theme-provider.tsx │ │ ├── theme-toggle.tsx │ │ └── ui │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── link.tsx │ │ │ ├── popover.tsx │ │ │ ├── select.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── tab-group.tsx │ │ │ ├── table.tsx │ │ │ └── top-loader.tsx │ ├── config │ │ └── env.ts │ ├── hooks │ │ └── use-session.tsx │ ├── lib │ │ ├── auth.ts │ │ ├── db.ts │ │ ├── fetcher.ts │ │ └── utils.ts │ ├── services │ │ ├── actions │ │ │ ├── auth.ts │ │ │ ├── commands.ts │ │ │ ├── entities.ts │ │ │ └── livestreams.ts │ │ ├── queries │ │ │ ├── commands.ts │ │ │ ├── discord.ts │ │ │ ├── entities.ts │ │ │ ├── livestreams.ts │ │ │ └── users.ts │ │ └── schemas │ │ │ ├── auth.ts │ │ │ ├── commands.ts │ │ │ ├── entity.ts │ │ │ ├── livestreams.ts │ │ │ └── platform.ts │ ├── styles │ │ └── globals.css │ └── types │ │ ├── command.ts │ │ ├── discord.ts │ │ ├── entity.ts │ │ ├── livestreams.ts │ │ ├── platform.ts │ │ └── user.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── command ├── acmd.go ├── acmda.go ├── cmds.go ├── cmdvar.go ├── command.go ├── dcmd.go ├── dcmda.go ├── helper.go ├── sozluk.go └── ucmd.go ├── config └── config.go ├── db ├── database.go └── postgresql │ ├── common.go │ ├── discord.go │ ├── postgresql.go │ └── twitch.go ├── docker-compose.yml ├── env.example ├── go.mod ├── go.sum ├── helper ├── helpers.go ├── helpers_test.go └── optinalcommands.go ├── model └── model.go ├── pkg └── twitchapi │ ├── interface.go │ └── twitch.go ├── platform └── platform.go └── service └── service.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [rasitds, eckoln, igdiaysu, furkan-oz] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/discord-bot-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.github/workflows/discord-bot-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/twitch-bot-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.github/workflows/twitch-bot-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/README.md -------------------------------------------------------------------------------- /apps/discord-bot/.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/.air.toml -------------------------------------------------------------------------------- /apps/discord-bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/Dockerfile -------------------------------------------------------------------------------- /apps/discord-bot/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/Dockerfile.dev -------------------------------------------------------------------------------- /apps/discord-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/README.md -------------------------------------------------------------------------------- /apps/discord-bot/cmd/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/cmd/main/main.go -------------------------------------------------------------------------------- /apps/discord-bot/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/env.example -------------------------------------------------------------------------------- /apps/discord-bot/fly.dev.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/fly.dev.toml -------------------------------------------------------------------------------- /apps/discord-bot/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/fly.toml -------------------------------------------------------------------------------- /apps/discord-bot/internal/alert/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/alert/alert.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/addcommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/addcommand.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/addcommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/addcommandvar.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/cmds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/cmds.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/command.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/deletecommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/deletecommand.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/deletecommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/deletecommandvar.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/deltwitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/deltwitch.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/donottrackmymessagescommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/donottrackmymessagescommand.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/helpers/helpers.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/invite.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/listcommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/listcommandvar.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/purge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/purge.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/settwitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/settwitch.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/sozluk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/sozluk.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/streamerlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/streamerlist.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/trackmymessagescommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/trackmymessagescommand.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/updatecommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/updatecommand.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/command/updatecommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/command/updatecommandvar.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/channeldelete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/channeldelete.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/guildcreate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/guildcreate.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/guilddelete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/guilddelete.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/handler.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/helper.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/interactioncreate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/interactioncreate.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/messagecreate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/messagecreate.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/messagereactionadd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/messagereactionadd.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/handler/ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/handler/ready.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/service/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/service/event/event.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/service/service.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/service/streamer/streamer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/service/streamer/streamer.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/service/webhook/botleave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/service/webhook/botleave.go -------------------------------------------------------------------------------- /apps/discord-bot/internal/service/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/discord-bot/internal/service/webhook/webhook.go -------------------------------------------------------------------------------- /apps/twitch-bot/.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/.air.toml -------------------------------------------------------------------------------- /apps/twitch-bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/Dockerfile -------------------------------------------------------------------------------- /apps/twitch-bot/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/Dockerfile.dev -------------------------------------------------------------------------------- /apps/twitch-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/README.md -------------------------------------------------------------------------------- /apps/twitch-bot/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/client/client.go -------------------------------------------------------------------------------- /apps/twitch-bot/cmd/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/cmd/main/main.go -------------------------------------------------------------------------------- /apps/twitch-bot/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/env.example -------------------------------------------------------------------------------- /apps/twitch-bot/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/fly.toml -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/addcommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/addcommand.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/addcommandalias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/addcommandalias.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/addcommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/addcommandvar.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/addtimer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/addtimer.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/cmds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/cmds.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/command.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/deletecommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/deletecommand.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/deletecommandalias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/deletecommandalias.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/deletecommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/deletecommandvar.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/deletetimer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/deletetimer.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/help.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/helpers/helpers.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/helpers/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/helpers/helpers_test.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/invite.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/leave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/leave.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/listcommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/listcommandvar.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/ping.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/so.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/so.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/sozluk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/sozluk.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/timer.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/timers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/timers.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/updatecommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/updatecommand.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/command/updatecommandvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/command/updatecommandvar.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/handler/botjoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/handler/botjoin.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/handler/handler.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/handler/privatemessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/handler/privatemessage.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/handler/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/handler/timer.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/handler/usernoticemessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/handler/usernoticemessage.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/service/service.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/service/timer/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/service/timer/timer.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/service/webhook/botdepart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/service/webhook/botdepart.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/service/webhook/botjoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/service/webhook/botjoin.go -------------------------------------------------------------------------------- /apps/twitch-bot/internal/service/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/twitch-bot/internal/service/webhook/webhook.go -------------------------------------------------------------------------------- /apps/web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/.eslintrc.json -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/.prettierrc.json -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/components.json -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/pnpm-lock.yaml -------------------------------------------------------------------------------- /apps/web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/postcss.config.mjs -------------------------------------------------------------------------------- /apps/web/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/prisma/schema.prisma -------------------------------------------------------------------------------- /apps/web/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/web/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/public/images/dashboard-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/public/images/dashboard-dark.png -------------------------------------------------------------------------------- /apps/web/public/images/dashboard-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/public/images/dashboard-light.png -------------------------------------------------------------------------------- /apps/web/public/senchabot-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/public/senchabot-logo.svg -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/signin/signin-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(auth)/signin/signin-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/signin/signin-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(auth)/signin/signin-form.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(landing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(landing)/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(landing)/themed-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(landing)/themed-image.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(legal)/cookie-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(legal)/cookie-policy/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(legal)/eula/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(legal)/eula/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(legal)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(legal)/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(legal)/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(legal)/privacy-policy/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(legal)/terms-of-service/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(legal)/terms-of-service/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/command-status-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/command-status-switch.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/commands-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/commands-list.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/custom/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/custom/loading.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/custom/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/custom/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/delete-command-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/delete-command-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/global/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/global/loading.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/global/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/global/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/update-command-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/@tabs/update-command-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/create-command-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/create-command-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/share-commands-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/commands/share-commands-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/entity-logs-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/entity-logs-card.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/[platform]/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/[platform]/[id]/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/bottom-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/bottom-nav.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/entities-dropdown-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/entities-dropdown-wrapper.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/entities-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/entities-dropdown.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/main-nav.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/nav-link-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/nav-link-item.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/sidebar.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/_sidebar/user-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/_sidebar/user-dropdown.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/discord/[id]/event-channels/create-event-channel-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/discord/[id]/event-channels/create-event-channel-form.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/discord/[id]/event-channels/delete-channel-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/discord/[id]/event-channels/delete-channel-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/discord/[id]/event-channels/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/discord/[id]/event-channels/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/joined-entities-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/joined-entities-list.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/privacy/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/link-account-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/link-account-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/linked-accounts-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/linked-accounts-list.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/personal-information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/profile/personal-information.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/depart-entity-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/depart-entity-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/entities-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/entities-list.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/join-entity-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/join-entity-button.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/joinable-entities-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/joinable-entities-list.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/joined-entities-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/joined-entities-list.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/@tabs/servers/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/dashboard/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/dashboard/settings/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(protected)/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/(protected)/error.tsx -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/app/robots.ts -------------------------------------------------------------------------------- /apps/web/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /apps/web/src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/link.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tab-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/tab-group.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/top-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/components/ui/top-loader.tsx -------------------------------------------------------------------------------- /apps/web/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/config/env.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-session.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/hooks/use-session.tsx -------------------------------------------------------------------------------- /apps/web/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/lib/auth.ts -------------------------------------------------------------------------------- /apps/web/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/lib/db.ts -------------------------------------------------------------------------------- /apps/web/src/lib/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/lib/fetcher.ts -------------------------------------------------------------------------------- /apps/web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/web/src/services/actions/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/actions/auth.ts -------------------------------------------------------------------------------- /apps/web/src/services/actions/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/actions/commands.ts -------------------------------------------------------------------------------- /apps/web/src/services/actions/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/actions/entities.ts -------------------------------------------------------------------------------- /apps/web/src/services/actions/livestreams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/actions/livestreams.ts -------------------------------------------------------------------------------- /apps/web/src/services/queries/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/queries/commands.ts -------------------------------------------------------------------------------- /apps/web/src/services/queries/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/queries/discord.ts -------------------------------------------------------------------------------- /apps/web/src/services/queries/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/queries/entities.ts -------------------------------------------------------------------------------- /apps/web/src/services/queries/livestreams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/queries/livestreams.ts -------------------------------------------------------------------------------- /apps/web/src/services/queries/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/queries/users.ts -------------------------------------------------------------------------------- /apps/web/src/services/schemas/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/schemas/auth.ts -------------------------------------------------------------------------------- /apps/web/src/services/schemas/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/schemas/commands.ts -------------------------------------------------------------------------------- /apps/web/src/services/schemas/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/schemas/entity.ts -------------------------------------------------------------------------------- /apps/web/src/services/schemas/livestreams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/schemas/livestreams.ts -------------------------------------------------------------------------------- /apps/web/src/services/schemas/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/services/schemas/platform.ts -------------------------------------------------------------------------------- /apps/web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/web/src/types/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/types/command.ts -------------------------------------------------------------------------------- /apps/web/src/types/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/types/discord.ts -------------------------------------------------------------------------------- /apps/web/src/types/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/types/entity.ts -------------------------------------------------------------------------------- /apps/web/src/types/livestreams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/types/livestreams.ts -------------------------------------------------------------------------------- /apps/web/src/types/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/types/platform.ts -------------------------------------------------------------------------------- /apps/web/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/src/types/user.ts -------------------------------------------------------------------------------- /apps/web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /command/acmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/acmd.go -------------------------------------------------------------------------------- /command/acmda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/acmda.go -------------------------------------------------------------------------------- /command/cmds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/cmds.go -------------------------------------------------------------------------------- /command/cmdvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/cmdvar.go -------------------------------------------------------------------------------- /command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/command.go -------------------------------------------------------------------------------- /command/dcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/dcmd.go -------------------------------------------------------------------------------- /command/dcmda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/dcmda.go -------------------------------------------------------------------------------- /command/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/helper.go -------------------------------------------------------------------------------- /command/sozluk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/sozluk.go -------------------------------------------------------------------------------- /command/ucmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/command/ucmd.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/config/config.go -------------------------------------------------------------------------------- /db/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/db/database.go -------------------------------------------------------------------------------- /db/postgresql/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/db/postgresql/common.go -------------------------------------------------------------------------------- /db/postgresql/discord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/db/postgresql/discord.go -------------------------------------------------------------------------------- /db/postgresql/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/db/postgresql/postgresql.go -------------------------------------------------------------------------------- /db/postgresql/twitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/db/postgresql/twitch.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/env.example -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/go.sum -------------------------------------------------------------------------------- /helper/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/helper/helpers.go -------------------------------------------------------------------------------- /helper/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/helper/helpers_test.go -------------------------------------------------------------------------------- /helper/optinalcommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/helper/optinalcommands.go -------------------------------------------------------------------------------- /model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/model/model.go -------------------------------------------------------------------------------- /pkg/twitchapi/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/pkg/twitchapi/interface.go -------------------------------------------------------------------------------- /pkg/twitchapi/twitch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/pkg/twitchapi/twitch.go -------------------------------------------------------------------------------- /platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/platform/platform.go -------------------------------------------------------------------------------- /service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senchabot-opensource/monorepo/HEAD/service/service.go --------------------------------------------------------------------------------