Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ostwilkens/remix-minimal-stack
The Remix Stack for a clean slate.
https://github.com/ostwilkens/remix-minimal-stack
remix-stack
Last synced: 3 months ago
JSON representation
The Remix Stack for a clean slate.
- Host: GitHub
- URL: https://github.com/ostwilkens/remix-minimal-stack
- Owner: ostwilkens
- Archived: true
- Created: 2022-04-04T12:06:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-05-19T09:11:23.000Z (over 2 years ago)
- Last Synced: 2024-05-09T07:33:47.476Z (6 months ago)
- Topics: remix-stack
- Language: JavaScript
- Homepage: https://remix.run/stacks
- Size: 396 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-remix - Remix Minimal Stack
- awesome-remix - Remix Minimal Stack
README
# Remix Minimal Stack
Learn more about [Remix Stacks](https://remix.run/stacks).
```
npx create-remix --template ostwilkens/remix-minimal-stack
```## What's in the stack
-Not a fan of bits of the stack? Fork it, change it, and use npx create-remix --template your/repo! Make it your own.
## Development
- Initial setup:
```sh
npm install
```- Start dev server:
```sh
npm run dev
```This starts your app in development mode, rebuilding assets on file changes.
## Build & run docker image
```bash
docker build -t minimal-stack .
docker run -p 3000:3000 minimal-stack
```Deploy on host of your choice.