Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nicholaiii/grave.tools

Webtool for managing Frostgrave warbands
https://github.com/nicholaiii/grave.tools

Last synced: 2 days ago
JSON representation

Webtool for managing Frostgrave warbands

Awesome Lists containing this project

README

        


Grave Tools - Frostgrave Warband Management

# Grave Tools

Making and managing warbands in Frostgrave has never been this easy.

## Usage

### Development

Just run and visit

```bash
pnpm dev
```

### Build

To build the App, run

```bash
pnpm build
```

And you will see the generated files in `dist` that ready to be served.

### Docker Production Build

First, build the app image by opening the terminal in the project's root directory.

```bash
docker buildx build . -t grave-tools:latest
```

Run the image and specify port mapping with the `-p` flag.

```bash
docker run --rm -it -p 8080:80 grave-tools:latest
```