Lothrik / diablo4-build-calc

A build calculator for Diablo 4.
https://lothrik.github.io/diablo4-build-calc/
GNU Affero General Public License v3.0
216 stars 42 forks source link

How do I spin this up locally? #8

Closed cmarabate closed 1 year ago

cmarabate commented 1 year ago

Can you explain how to spin this repo up locally? I am confused by the lack of a package.json file. Normally I can use yarn to install all the packages and then use yarn start to spin it up.

What am I missing?

Lothrik commented 1 year ago

There shouldn't be any packages required. Just launch any web server with diablo4-build-calc as the root directory.

cd ./diablo4-build-calc/
python3 -m http.server 8000
cmarabate commented 1 year ago

Oh okay, that is very different from what I am used to. Thanks!