Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nicholaiii/grave.tools
- Owner: Nicholaiii
- License: mit
- Created: 2024-05-26T07:57:15.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T20:57:00.000Z (3 months ago)
- Last Synced: 2024-08-16T21:33:16.191Z (3 months ago)
- Language: Vue
- Size: 405 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```