33 lines
786 B
Markdown
Raw Normal View History

2023-06-23 03:59:14 +00:00
# Remix
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
This directory is a brief example of a [Remix](https://remix.run/docs) site that can be deployed to Vercel with zero configuration.
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
## Deploy Your Own
2023-06-18 23:54:49 +00:00
2023-06-23 03:59:14 +00:00
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/vercel/tree/main/examples/remix&template=remix)
2023-06-18 23:54:49 +00:00
2023-06-23 03:59:14 +00:00
_Live Example: https://remix-run-template.vercel.app_
2023-06-18 23:54:49 +00:00
2023-06-23 03:59:14 +00:00
You can also deploy using the [Vercel CLI](https://vercel.com/cli):
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
```sh
npm i -g vercel
vercel
2023-02-27 08:55:07 +00:00
```
2023-06-23 03:59:14 +00:00
## Development
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
To run your Remix app locally, make sure your project's local dependencies are installed:
2023-06-18 23:54:49 +00:00
2023-06-23 03:59:14 +00:00
```sh
npm install
2023-06-18 23:54:49 +00:00
```
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
Afterwards, start the Remix development server like so:
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
```sh
npm run dev
```
2023-02-27 08:55:07 +00:00
2023-06-23 03:59:14 +00:00
Open up [http://localhost:3000](http://localhost:3000) and you should be ready to go!