https://github.com/parassolanki/remix-trello
Trello clone using Remix and Drizzle ORM.
https://github.com/parassolanki/remix-trello
drizzle-orm lucia-auth remix shadcn-ui typescript
Last synced: about 2 months ago
JSON representation
Trello clone using Remix and Drizzle ORM.
- Host: GitHub
- URL: https://github.com/parassolanki/remix-trello
- Owner: ParasSolanki
- Created: 2023-12-13T15:02:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T16:33:37.000Z (over 2 years ago)
- Last Synced: 2023-12-19T16:50:35.670Z (over 2 years ago)
- Topics: drizzle-orm, lucia-auth, remix, shadcn-ui, typescript
- Language: TypeScript
- Homepage:
- Size: 392 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remix Trello
Trello clone using Remix and Drizzle ORM.
## Installation
Install Dependencies.
```sh
pnpm install
```
## Environment Variables
To run this project, you will need to add the following environment variables to your .env file
| Name | Description |
| ------------ | ------------------------------------------------------------------- |
| DATABASE_URL | Database connection url. |
| AUTH_SECRET | A secret key that is used to sign and verify authentication tokens. |
## Run Locally
To run this project locally first you would need local MySQL Database and run the migrations.
```sh
pnpm migrate
```
From your terminal:
```sh
pnpm dev
```
This starts your app in development mode, rebuilding assets on file changes.
## Deployment
First, build your app for production:
```sh
pnpm build
```
Then run the app in production mode:
```sh
pnpm start
```