Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 638 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 638 Bytes

Getting Started with Stargrave configurator

https://labernator.github.io/Stargrave/

Development using Docker

If you want to work on the codebase, you can use the provided Dockerfile as a development environment. Build the image every time you make changes on the dependencies (package.json).

docker build -t stargrave:latest .

Spin up the image with the following command. This mounts the source folder as a volume. Node/React will hot-reload on changes.

docker run \
    -it \
    --rm \
    -v ${PWD}:/app \
    -v /app/node_modules \
    -p 3001:3000 \
    -e CHOKIDAR_USEPOLLING=true \
    stargrave:latest