2016-09-16 09:52:57 -05:00
|
|
|
# RetroArch Web Player
|
|
|
|
|
|
|
|
# Requirements
|
|
|
|
Most of the magic happens on the browser so nothing really on that regard
|
|
|
|
|
|
|
|
I you want a self hosted version you need
|
2018-02-06 22:37:07 -05:00
|
|
|
- A web server, nginx/apache will do, download a build here:
|
2016-09-16 09:52:57 -05:00
|
|
|
https://buildbot.libretro.com/nightly/emscripten/
|
2018-08-11 18:44:28 +02:00
|
|
|
- Extract the build somewhere in your web-server
|
2018-02-06 22:37:07 -05:00
|
|
|
- Grab the asset bundle:
|
|
|
|
https://buildbot.libretro.com/assets/frontend/bundle.zip
|
|
|
|
- Unzip it in the same dir you extracted the rest, inside **/assets/frontend/bundle**
|
|
|
|
- Create an **assets/cores** dir, you can put game data in that dir so it's available under **downloads**
|
|
|
|
- chmod +x the indexer script
|
|
|
|
- run the indexer script (you need coffeescript) like this: ./indexer ./assets/frontend > ./assets/frontend/.index-xhr
|
|
|
|
- run the indexer script (you need coffeescript) like this: ./indexer ./assets/cores > ./assets/cores/.index-xhr
|
2016-09-16 09:52:57 -05:00
|
|
|
|
2018-02-06 22:37:07 -05:00
|
|
|
That should be it, you can add more cores to the list by editing index.html
|
2016-09-16 09:52:57 -05:00
|
|
|
|