Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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.