LodeRunner_TotalRecall icon indicating copy to clipboard operation
LodeRunner_TotalRecall copied to clipboard

Downloadable version to play offline.

Open JazzfanRS opened this issue 1 year ago • 3 comments

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.

JazzfanRS avatar May 01 '23 14:05 JazzfanRS

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

robzino avatar Jan 20 '24 16:01 robzino

Thank you. Still beyond me. I know nothing about programming. Actually forgot I left this request.

JazzfanRS avatar Jan 20 '24 18:01 JazzfanRS

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à

cibersheep avatar Jan 23 '24 10:01 cibersheep