Initial project structure with some barebones layout, CSS and JS from game-data

This commit is contained in:
2025-08-29 02:44:43 -04:00
parent 4168afe585
commit aab5acafb4
33 changed files with 564 additions and 1 deletions
+2
View File
@@ -0,0 +1,2 @@
docker build -t muldap -f Dockerfile.dev .
docker build -t muldap-gulp -f Dockerfile.gulp .
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
docker build -t muldap -f Dockerfile.dev .
docker build -t muldap-gulp -f Dockerfile.gulp .
+1
View File
@@ -0,0 +1 @@
docker exec muldap rake %*
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
docker exec muldap rake "$@"
+2
View File
@@ -0,0 +1,2 @@
docker run --rm -d -t -v "%cd%:/usr/src/muldap" -p 9300:9300 --name muldap muldap
docker run --rm -d -t -v "%cd%:/usr/src/muldap" --name muldap-gulp muldap-gulp npm run gulp watch
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
docker run --rm -d -t -v "$(pwd):/usr/src/muldap" -p 9300:9300 --name muldap muldap
docker run --rm -d -t -v "$(pwd):/usr/src/muldap" --name muldap-gulp muldap-gulp npm run gulp watch
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
# Configure bundler to use local vendor path
bundle config set --local path 'vendor/bundle'
# Install gems
bundle install