https://github.com/bjornpagen/dm2stay
https://github.com/bjornpagen/dm2stay
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bjornpagen/dm2stay
- Owner: bjornpagen
- License: 0bsd
- Created: 2025-02-16T21:44:03.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-16T22:13:23.000Z (3 months ago)
- Last Synced: 2025-02-16T22:25:25.832Z (3 months ago)
- Language: TypeScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Setup
## Initial Setup
1. Install project dependencies:
```bash
bun install
```2. Link your project to Vercel:
```bash
bun run vercel link
```3. Pull environment variables:
```bash
bun run vercel env pull
```## Adding UI Components
This project uses shadcn/ui canary version. Do not use the latest version.
To add new components:
```bash
bunx --bun shadcn-ui@canary add
```Example:
```bash
bunx --bun shadcn-ui@canary add button
```## Development
```bash
bun install
bun run dev # Start the Next.js development server
bun run dev:inngest # Start the Inngest development server (in a separate terminal)
```## Deployment
This project is deployed on [Vercel](https://vercel.com). Deployments are automatically triggered when pushing to the main branch.
For manual deployments:
```bash
bun run vercel
```