{"id":29617422,"url":"https://github.com/veyricdev/react-router-boilerplate","last_synced_at":"2025-07-21T02:01:37.107Z","repository":{"id":305310345,"uuid":"1022518083","full_name":"veyricdev/react-router-boilerplate","owner":"veyricdev","description":"Boilerplate to get started with React Router 7 and Shadcn","archived":false,"fork":false,"pushed_at":"2025-07-19T09:30:28.000Z","size":78,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2025-07-19T15:06:20.581Z","etag":null,"topics":["boilerplate","react","react-router","shadcn"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/veyricdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-19T08:43:15.000Z","updated_at":"2025-07-19T09:30:31.000Z","dependencies_parsed_at":"2025-07-19T15:06:27.958Z","dependency_job_id":"271fe956-9877-4982-87ca-1f2a785575de","html_url":"https://github.com/veyricdev/react-router-boilerplate","commit_stats":null,"previous_names":["veyricdev/react-router-boilerplate"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/veyricdev/react-router-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyricdev%2Freact-router-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyricdev%2Freact-router-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyricdev%2Freact-router-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyricdev%2Freact-router-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veyricdev","download_url":"https://codeload.github.com/veyricdev/react-router-boilerplate/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyricdev%2Freact-router-boilerplate/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266226982,"owners_count":23895728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplate","react","react-router","shadcn"],"created_at":"2025-07-21T02:01:04.412Z","updated_at":"2025-07-21T02:01:37.086Z","avatar_url":"https://github.com/veyricdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to React Router!\n\nA modern, production-ready template for building full-stack React applications using React Router.\n\n[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/remix-run/react-router-templates/tree/main/default)\n\n## Features\n\n- 🚀 Server-side rendering\n- ⚡️ Hot Module Replacement (HMR)\n- 📦 Asset bundling and optimization\n- 🔄 Data loading and mutations\n- 🔒 TypeScript by default\n- 🎉 TailwindCSS for styling\n- 📖 [React Router docs](https://reactrouter.com/)\n\n## Project Structure\n\nThe project is structured with the application logic inside the `app` directory.\n\n```\n├── app/                 # Application source code\n│   ├── components/      # UI components\n│   ├── configs/         # Configs for the app\n│   ├── hocs/            # Higher-order components\n│   ├── hooks/           # Custom React hooks\n│   ├── layouts/         # Layout components\n│   ├── lib/             # Reusable libraries\n│   ├── pages/           # Configs for the app\n│   ├── pages/           # UI components for your pages\n│   ├── routes/          # Route modules (loaders, actions, meta, etc.)\n│   ├── styles/          # Global styles\n│   ├── utils/           # Utility functions\n│   ├── root.tsx         # The root layout component for the app\n│   └── routes.ts        # The main route configuration file\n├── public/              # Static assets (e.g., favicon.ico)\n├── package.json\n├── tsconfig.json\n└── vite.config.ts\n```\n\n## Getting Started\n\n### Installation\n\nInstall the dependencies:\n\n```bash\nnpm install\n```\n\n### Development\n\nStart the development server with HMR:\n\n```bash\nnpm run dev\n```\n\nYour application will be available at `http://localhost:5173`.\n\n## Building for Production\n\nCreate a production build:\n\n```bash\nnpm run build\n```\n\n## Deployment\n\n### Docker Deployment\n\nTo build and run using Docker:\n\n```bash\ndocker build -t my-app .\n\n# Run the container\ndocker run -p 3000:3000 my-app\n```\n\nThe containerized application can be deployed to any platform that supports Docker, including:\n\n- AWS ECS\n- Google Cloud Run\n- Azure Container Apps\n- Digital Ocean App Platform\n- Fly.io\n- Railway\n\n### DIY Deployment\n\nIf you're familiar with deploying Node applications, the built-in app server is production-ready.\n\nMake sure to deploy the output of `npm run build`\n\n```\n├── package.json\n├── package-lock.json (or pnpm-lock.yaml, or bun.lockb)\n├── build/\n│   ├── client/    # Static assets\n│   └── server/    # Server-side code\n```\n\n## Styling\n\nThis template comes with [Tailwind CSS](https://tailwindcss.com/) already configured for a simple default starting experience. You can use whatever CSS framework you prefer.\n\n---\n\nBuilt with ❤️ using React Router.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveyricdev%2Freact-router-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveyricdev%2Freact-router-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveyricdev%2Freact-router-boilerplate/lists"}