https://github.com/fmzu/poll
Discordの投票Bot
https://github.com/fmzu/poll
bun cloudflare discord discord-bot hono
Last synced: 2 months ago
JSON representation
Discordの投票Bot
- Host: GitHub
- URL: https://github.com/fmzu/poll
- Owner: fmzu
- Created: 2024-07-01T15:36:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T08:51:48.000Z (over 1 year ago)
- Last Synced: 2025-03-31T00:17:27.245Z (about 1 year ago)
- Topics: bun, cloudflare, discord, discord-bot, hono
- Language: TypeScript
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
bun install
bun run --cwd api dev
```
デプロイ(どっちもdeployするときはapiの方から順番に)
```
bun run --cwd api deploy
bun run --cwd bot deploy
```
Drizzleスキーマに基づいてマイグレーションを生成する
```
bun --cwd api drizzle-kit generate
```
ローカルのデータベースを更新
```
bun --cwd api wrangler d1 migrations apply vote --local
```
本番環境のデータベースを更新
```
bun --cwd api wrangler d1 migrations apply vote --remote
```
更新後デプロイ