https://github.com/chadnpc/remix-ts-template
https://github.com/chadnpc/remix-ts-template
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chadnpc/remix-ts-template
- Owner: chadnpc
- Created: 2026-03-14T03:37:46.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-07T06:56:38.000Z (2 months ago)
- Last Synced: 2026-04-08T20:58:04.231Z (2 months ago)
- Language: TypeScript
- Size: 1.3 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remix
This directory is a brief example of a [Remix](https://remix.run/docs) site that can be deployed to Vercel with zero configuration.
To get started, run the Remix cli with this template
```sh
npx create-remix@latest --template vercel/vercel/examples/remix
```
## Deploy Your Own
[](https://vercel.com/new/clone?repository-url=https://github.com/vercel/examples/tree/main/framework-boilerplates/remix&template=remix)
_Live Example: https://remix-run-template.vercel.app_
You can also deploy using the [Vercel CLI](https://vercel.com/docs/cli):
```sh
npm i -g vercel
vercel
```
## Development
To run your Remix app locally, make sure your project's local dependencies are installed:
```sh
npm install
```
Afterwards, start the Remix development server like so:
```sh
npm run dev
```
Open up [http://localhost:5173](http://localhost:5173) and you should be ready to go!