Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 619 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 619 Bytes

This project is a build planner for the game The Slormancer

Install and run project

Windows

Install node and npm : https://nodejs.org/en/download/

Run npm install

Run npm run start to start the server on http://localhost:4200/

Linux

Install node and npm with apt (https://doc.ubuntu-fr.org/nodejs) or pacman (https://wiki.archlinux.org/title/Node.js)

Run npm install

Run npm run start to start the server on http://localhost:4200/

Removing white background from pngs

for file in *.png; do convert "$file" -transparent white "$file"; done