=================================== LAZY WIZARD'S GUIDE =================================== Running the hosted version offline ----------------------------------- Normally you would start index.html in the root of this archive to play Lazy Wizard's Guide. Or go to: https://lazywizardsguide.7hrsmn.io/ For the purpose of IFDB, the hosted version of the game is included in this archive. It can be found in the wwwroot\ folder. You will need to host this folder in a HTTP server (Apache, Nginx, IIS, etc). Starting it locally, in a browser WILL NOT WORK. Doing and configuring an HTTP server is beyond the scope of this document. I will include brief instructions to run this inside a Docker container. The instructions will work for any OS that supports running Docker. Running inside Docker ----------------------------------- The easiest way to run this locally is using Docker. Using docker works under MacOS or Linux as well, just use the appropriate path. Extract this archive somewhere. We will assume it is C:\GAMEZ\LWG. So now the hosted part can be found in C:\GAMEZ\LWG\wwwroot Then execute: docker run -d -p 8080:80 --name lazywizard -v C:\GAMEZ\LWG\wwwroot:/usr/share/nginx/html:ro nginx Replace C:\GAMEZ\LWG\wwwroot with your path. Open a browser to http://localhost:8080 and the game will run for you in your browser.