Dingify
1.0.0
dingifyからフルスピードで始めましょう!
はじめに・インストール・Tech Stack +機能・著者・クレジット
Dingifyへようこそ、私たちはあなたのためにあなたのアラートを簡単にするつもりです
Dingifyは、Turborepoが管理するモノレポです。モノレポは、 appsとpackagesディレクトリに分割されています。
.
├── apps # Its app workspace which contains
│ ├── www # Nextjs app which is deployed in Vercel
│ ├── api # Hono app that is our REST-api for our SDK
│ └── ...
├── packages # are the shared packages that are used by the apps
│ ├── db # Prisma DB connector
│ └── ui # Shared UI components (Shadcn)
├── tooling # are the shared configuration that are used by the apps and packages
│ ├── eslint # Shared eslint presets
│ ├── prettier # Shared prettier configuration
│ ├── tailwind # Shared tailwind configuration
│ └── typescript # Shared tsconfig you can extend from
├── LICENSE
└── README.md
次のコマンドでこのリポジトリをローカルにクローンして作成します。
git clone https://github.com/Codehagen/Dingifypnpm install.env.exampleを.env.localにコピーして変数を更新します。 cp .env.example .env.localenvに必要なすべてを入力します。
YarnまたはTurboから開発サーバーを起動します。
# To start the server
pnpm dev
# To push the DB schema
pnpm --filter=db db:push REST-APIを使用したい場合は、 apps/apiでHonoを更新する必要があります
[vars]
# MY_VAR = "my-variable"
# DATABASE_URL = "Use same link as your db URL"CloudFlareに展開したい場合は、実行する必要があります
pnpm run deploy貢献者が大好きです!貢献する方法は次のとおりです。