https://github.com/kenfdev/claude-code-todo-app
https://github.com/kenfdev/claude-code-todo-app
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kenfdev/claude-code-todo-app
- Owner: kenfdev
- Created: 2025-06-11T01:06:23.000Z (10 months ago)
- Default Branch: feature/user-authentication
- Last Pushed: 2025-06-11T06:28:37.000Z (10 months ago)
- Last Synced: 2025-06-11T06:37:53.236Z (10 months ago)
- Language: TypeScript
- Size: 214 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to React Router!
A modern, production-ready template for building full-stack React applications using React Router.
## Features
- 🚀 Server-side rendering
- ⚡️ Hot Module Replacement (HMR)
- 📦 Asset bundling and optimization
- 🔄 Data loading and mutations
- 🔒 TypeScript by default
- 🎉 TailwindCSS for styling
- 📖 [React Router docs](https://reactrouter.com/)
## Getting Started
### Installation
Install the dependencies:
```bash
npm install
```
### Development
Run an initial database migration:
```bash
npm run db:migrate
```
Start the development server with HMR:
```bash
npm run dev
```
Your application will be available at `http://localhost:5173`.
## Building for Production
Create a production build:
```bash
npm run build
```
## Deployment
Deployment is done using the Wrangler CLI.
First, you need to create a d1 database in Cloudflare.
```sh
npx wrangler d1 create
```
Be sure to update the `wrangler.toml` file with the correct database name and id.
You will also need to [update the `drizzle.config.ts` file](https://orm.drizzle.team/docs/guides/d1-http-with-drizzle-kit), and then run the production migration:
```sh
npm run db:migrate-production
```
To build and deploy directly to production:
```sh
npm run deploy
```
To deploy a preview URL:
```sh
npx wrangler versions upload
```
You can then promote a version to production after verification or roll it out progressively.
```sh
npx wrangler versions deploy
```
## Styling
This template comes with [Tailwind CSS](https://tailwindcss.com/) already configured for a simple default starting experience. You can use whatever CSS framework you prefer.
---
Built with ❤️ using React Router.