https://github.com/btechtards/tcs-bhediya
A bot for the /r/BTechtards Discord server, written in typescript.
https://github.com/btechtards/tcs-bhediya
btechtards discord-bot discord-bots discord-js discordjs djs monorepo reddit
Last synced: 11 months ago
JSON representation
A bot for the /r/BTechtards Discord server, written in typescript.
- Host: GitHub
- URL: https://github.com/btechtards/tcs-bhediya
- Owner: BTechtards
- Created: 2025-02-16T16:31:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-21T12:42:08.000Z (about 1 year ago)
- Last Synced: 2025-04-11T22:11:41.249Z (about 1 year ago)
- Topics: btechtards, discord-bot, discord-bots, discord-js, discordjs, djs, monorepo, reddit
- Language: TypeScript
- Homepage: https://discord.gg/drbARftwbc
- Size: 199 KB
- Stars: 7
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> [!IMPORTANT]
> This project is currently abandoned, we might start working on it in the future again.
Examples for common monorepo tasks:
Install a dependency in a specific app (or package)
```sh
pnpm i foobar -F
# pnpm i foobar -F
```
-F stands for filter
Dont cd into apps/bot and try to pnpm i there
Install a dependency in the repo root
```sh
pnpm i foobar -w
```
Build the entire repo
```sh
pnpm build:all
```
Generate and apply migrations
```sh
pnpm db:migrate
```
Lint the entire project
```sh
pnpm lint
```