minetest/util/master
proller 1309e52198 Rename names -> can_see_far_names in announce 2013-12-03 20:14:06 +04:00
..
README.md Fix masterserver README.md 2013-11-04 21:54:25 +04:00
index.html Masterserver show privs and js autoload 2013-11-04 04:56:39 +04:00
list.js Masterserver uptime fix 2013-11-05 21:18:37 +04:00
master.cgi Masterserver show privs and js autoload 2013-11-04 04:56:39 +04:00
servers.jst Rename names -> can_see_far_names in announce 2013-12-03 20:14:06 +04:00
style.css Remove link to #, add unlimited_player_transfer_distance to announce 2013-12-03 19:48:43 +04:00

README.md

Minetest server list

Setting up the webpage

You will have to install node.js, doT.js and their dependencies to compile the serverlist webpage template.

First install node.js, eg:

# apt-get install nodejs
# pacman -S nodejs
# emerge nodejs

Then install doT.js and its dependencies:

$ cd ~/code
$ git clone https://github.com/olado/doT.git
$ cd doT
$ npm install

Or with npm:

$ npm install dot commander mkdirp

And finally compile the template:

$ cd ~/minetest/util/master
$ ~/code/doT/bin/dot-packer -s . -d .

or

$ ~/node_modules/dot/bin/dot-packer -s . -d .

Embedding to any page

<script>
    var master = {
        root: 'http://servers.minetest.net/',
        limit: 10,
        clients_min: 1,
        no_flags: 1,
        no_ping: 1,
        no_uptime: 1
    };
</script>
<script src="http://servers.minetest.net/list.js"></script>