https://github.com/adrianhdezm/timba-stack
Timba Stack is a Remix based template for building fullstack web applications.
https://github.com/adrianhdezm/timba-stack
remix-stack
Last synced: 3 months ago
JSON representation
Timba Stack is a Remix based template for building fullstack web applications.
- Host: GitHub
- URL: https://github.com/adrianhdezm/timba-stack
- Owner: adrianhdezm
- License: mit
- Created: 2024-10-07T20:49:49.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-12T22:37:18.000Z (8 months ago)
- Last Synced: 2025-03-05T04:02:06.039Z (3 months ago)
- Topics: remix-stack
- Language: TypeScript
- Homepage:
- Size: 1.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Timba Stack - Fullstack Remix Template
Welcome to **Timba Stack**, a simple yet powerful [Remix](https://remix.run) template for building fullstack web applications.
## Getting Started
### Prerequisites
- Node.js (v20.x or higher)
- npm or yarn### Create Your Project
To create a new project using this template, run the following command:
```bash
npx create-remix@latest --template adrianhdezm/timba-stack
```This will set up your project using the **Timba Stack** template.
## Database migrations
After modifiying the database schema in `src/server/db.schema.ts`, you need to create a new migration file and apply it.
### Create a new migration file:
```bash
npx drizzle-kit generate
```### Apply migrations:
```bash
npx drizzle-kit migrate
```### Development
1. Navigate to your project directory:
```bash
cd your-project-name
```2. Install dependencies:
```bash
npm install
```3. Start the development server:
```bash
npm run dev
```Visit [http://localhost:3000](http://localhost:3000) to view your running app.
## Deployment
### Build for production:
```bash
npm run build
```### Start the app in production mode:
```bash
npm start
```## License
This project is licensed under the [MIT License](LICENSE).