LodeRunner_TotalRecall
LodeRunner_TotalRecall copied to clipboard
Downloadable version to play offline.
How can I play offline on a Windows PC? I don't know anything about Linux or programming languages. I understand it's HTML5, which I also don't know how to write, but I know I should be able to have everything locally sourced.
EDIT: Included what OS I use and the limits of my programming.
Just use in a docker file -
Dockerfile: FROM nginx:latest COPY ./src /usr/share/nginx/html/src/
(./src is the folder where all the LR source code is)
then run: docker build -t loderunner:latest . then run: docker run -d -p 8080:80 loderunner
then in browser: http://localhost:8080/src/lodeRunner.html
Thank you. Still beyond me. I know nothing about programming. Actually forgot I left this request.
On Linux I could manage to accomplish on a terminal.
clone and cd into folder
python3 -m http.server 9000
browse http://localhost:9000/lodeRunner.html
et voilà