Herald is the code for the game of https://writtenrealms.com, as well as its world editor. It is written in Vue.js, using TypeScript and SASS.
To run the frontend locally against the production Written Realms backend, install the porject and then run it with Vite:
npm install
npm run dev
If you are running a local copy of the Written Realms backend, update the API and Websocket endpoints if necessary in .env.dev
then run:
npm install
num run dev-local
To run the frontend in a Docker container, run:
docker build -t herald .
docker run --rm -p 5173:80 herald