No description
Find a file Use this template
jank 2f4fafd749
All checks were successful
Build and Push Docker Image / Build (push) Successful in 21s
chore: Update credentials
2025-09-15 08:48:54 +02:00
.forgejo chore: Update credentials 2025-09-15 08:48:54 +02:00
app chore: Initial 2025-09-10 12:04:00 +02:00
docs chore(release): 1.3.0 [skip ci] 2025-09-15 06:43:50 +00:00
public chore: Initial 2025-09-10 12:04:00 +02:00
.dockerignore idk 2025-09-10 13:22:44 +02:00
.gitignore chore: Initial 2025-09-10 12:04:00 +02:00
bun.lockb fix: install 2025-09-10 12:23:36 +02:00
default.conf fix: Fix routing 2025-09-15 08:17:04 +02:00
Dockerfile fix: Fix routing 2025-09-15 08:17:04 +02:00
package.json chore: Initial 2025-09-10 12:04:00 +02:00
react-router.config.ts fix: Fix up some stuff 2025-09-10 12:29:25 +02:00
README.md chore: Initial 2025-09-10 12:04:00 +02:00
release.config.cjs feat: Add git action 2025-09-11 15:32:35 +02:00
tsconfig.json chore: Initial 2025-09-10 12:04:00 +02:00
vite.config.ts chore: Initial 2025-09-10 12:04:00 +02:00

Welcome to React Router!

A modern, production-ready template for building full-stack React applications using React Router.

Open in StackBlitz

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

Getting Started

Installation

Install the dependencies:

npm install

Development

Start the development server with HMR:

npm run dev

Your application will be available at http://localhost:5173.

Building for Production

Create a production build:

npm run build

Deployment

Docker Deployment

To build and run using Docker:

docker build -t my-app .

# Run the container
docker run -p 3000:3000 my-app

The containerized application can be deployed to any platform that supports Docker, including:

  • AWS ECS
  • Google Cloud Run
  • Azure Container Apps
  • Digital Ocean App Platform
  • Fly.io
  • Railway

DIY Deployment

If you're familiar with deploying Node applications, the built-in app server is production-ready.

Make sure to deploy the output of npm run build

├── package.json
├── package-lock.json (or pnpm-lock.yaml, or bun.lockb)
├── build/
│   ├── client/    # Static assets
│   └── server/    # Server-side code

Styling

This template comes with Tailwind CSS already configured for a simple default starting experience. You can use whatever CSS framework you prefer.


Built with ❤️ using React Router.