Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fmzu/nuinui
https://github.com/fmzu/nuinui
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fmzu/nuinui
- Owner: fmzu
- Created: 2024-09-23T07:08:27.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T08:22:10.000Z (3 months ago)
- Last Synced: 2024-10-25T01:38:03.593Z (3 months ago)
- Language: TypeScript
- Size: 260 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
bun run --cwd api dev
bun run --cwd ui devDrizzle-studio
```
bun run --cwd api studio
```デプロイ(どっちもdeployするときはapiの方から順番に)
```
bun run --cwd api deploy
bun run --cwd ui deploy
```DBの作成
```
bun --cwd api wrangler d1 create nuinui
```Drizzleスキーマに基づいてマイグレーションを生成する
```
bun --cwd api drizzle-kit generate
```ローカルのデータベースを更新
```
bun --cwd api wrangler d1 migrations apply nuinui --local
```本番環境のデータベースを更新
```
bun --cwd api wrangler d1 migrations apply nuinui --remote
```shadcnで必要なコンポーネントだけ取得する(bunxの際はcdでファイル移動する)
```
bunx shadcn@latest add button
```### インストール
bun iするときは--cwdを使う
```
bun i --cwd ui react
```