Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 983 Bytes

README.md

File metadata and controls

41 lines (26 loc) · 983 Bytes

Castles & Crusades Treasure Generator

A treasure generator for the table top RPG: Castles and Crusades.

Based on the treasure tables in the Fourth Printing of "Castles and Crusades Monsters and Treasure" (but it should work for the 5th edition too)

Development

Install the dependencies...

cd cnc-treasure-generator
npm install

...then start the server:

npm run dev

Navigate to localhost:8080. You should see your app running. Edit a component file in src, save it, and reload the page to see your changes.

Building and hosting

To create an optimised version of the app:

npm run build

You can upload the updated public folder wherever you'd like to host the treasure tracker.


To test that the production build is working locally, you can run a local serve using the following command:

npm start

This will start up a server pointing to the public directory on localhost:5000