integrated development environment

This commit is contained in:
BuckarooBanzay 2020-07-23 20:17:22 +02:00
parent 781d655d1e
commit 7a0e3886f6
6 changed files with 17 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
mapserver mapserver
mapserver_mod
world.mt world.mt
output output
test-output test-output

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "dev/worldmods/mapserver_mod"]
path = dev/worldmods/mapserver_mod
url = https://github.com/minetest-mapserver/mapserver_mod

1
dev/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
data

3
dev/minetest.conf Normal file
View File

@ -0,0 +1,3 @@
default_privs = fast, home, fly, noclip, privs
secure.http_mods = mapserver
mapserver.url = http://127.0.0.1:8080

9
dev/start_minetest.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
docker run --rm -it \
-u root:root \
-v $(pwd)/minetest.conf:/etc/minetest/minetest.conf \
-v $(pwd)/worldmods:/root/.minetest/worlds/world/worldmods \
-v $(pwd)/data:/root/.minetest/worlds/world \
--network host \
registry.gitlab.com/minetest/minetest/server:5.2.0

@ -0,0 +1 @@
Subproject commit f6f3cd4ff5cf3900bb2b73370e936eb41ea46f6c