This repository has been archived on 2024-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
www.local-ip.sh/README.md

42 lines
760 B
Markdown
Raw Normal View History

2023-12-11 14:19:17 +00:00
# Welcome to Remix!
- [Remix Docs](https://remix.run/docs)
## Fly Setup
1. [Install `flyctl`](https://fly.io/docs/getting-started/installing-flyctl/)
2. Sign up and log in to Fly
```sh
flyctl auth signup
```
3. Setup Fly. It might ask if you want to deploy, say no since you haven't built the app yet.
```sh
flyctl launch
```
## Development
From your terminal:
```sh
npm run dev
```
This starts your app in development mode, rebuilding assets on file changes.
## Deployment
If you've followed the setup instructions already, all you need to do is run this:
```sh
npm run deploy
```
You can run `flyctl info` to get the url and ip address of your server.
Check out the [fly docs](https://fly.io/docs/getting-started/node/) for more information.