Foxnouns.NET/Foxnouns.Frontend/README.md

41 lines
801 B
Markdown
Raw Normal View History

# Welcome to Remix!
2024-06-08 21:02:12 +02:00
- 📖 [Remix docs](https://remix.run/docs)
2024-06-08 21:02:12 +02:00
## Development
2024-06-08 21:02:12 +02:00
Run the dev server:
2024-06-08 21:02:12 +02:00
```shellscript
npm run dev
2024-06-08 21:02:12 +02:00
```
## Deployment
2024-06-08 21:02:12 +02:00
First, build your app for production:
2024-06-08 21:02:12 +02:00
```sh
npm run build
```
2024-06-08 21:02:12 +02:00
Then run the app in production mode:
```sh
npm start
2024-06-08 21:02:12 +02:00
```
Now you'll need to pick a host to deploy it to.
2024-06-08 21:02:12 +02:00
### DIY
2024-06-08 21:02:12 +02:00
If you're familiar with deploying Node applications, the built-in Remix app server is production-ready.
Make sure to deploy the output of `npm run build`
- `build/server`
- `build/client`
2024-06-08 21:02:12 +02:00
## Styling
2024-06-08 21:02:12 +02:00
This template comes with [Tailwind CSS](https://tailwindcss.com/) already configured for a simple default starting experience. You can use whatever css framework you prefer. See the [Vite docs on css](https://vitejs.dev/guide/features.html#css) for more information.