An open API service indexing awesome lists of open source software.

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.

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
```