summaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-22 14:59:24 -0400
committerrealtradam <[email protected]>2024-05-22 14:59:24 -0400
commit6cf41b4a5c55c91974e31ac032d969c7481b3e80 (patch)
treed0233a35a60f33f6d7115a26139fd6e61f96c15a /bin
parent3321db8f9c549103ebae46bf025a3135208a2e3b (diff)
downloadgameHolster-6cf41b4a5c55c91974e31ac032d969c7481b3e80.tar.gz
gameHolster-6cf41b4a5c55c91974e31ac032d969c7481b3e80.zip
extract frontend
Diffstat (limited to 'bin')
-rwxr-xr-xbin/dev16
-rwxr-xr-xbin/setup3
2 files changed, 0 insertions, 19 deletions
diff --git a/bin/dev b/bin/dev
deleted file mode 100755
index ad72c7d..0000000
--- a/bin/dev
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env sh
-
-if ! gem list foreman -i --silent; then
- echo "Installing foreman..."
- gem install foreman
-fi
-
-# Default to port 3000 if not specified
-export PORT="${PORT:-3000}"
-
-# Let the debug gem allow remote connections,
-# but avoid loading until `debugger` is called
-export RUBY_DEBUG_OPEN="true"
-export RUBY_DEBUG_LAZY="true"
-
-exec foreman start -f Procfile.dev "$@"
diff --git a/bin/setup b/bin/setup
index d38bf9f..3cd5a9d 100755
--- a/bin/setup
+++ b/bin/setup
@@ -17,9 +17,6 @@ FileUtils.chdir APP_ROOT do
system! "gem install bundler --conservative"
system("bundle check") || system!("bundle install")
- # Install JavaScript dependencies
- system("yarn check --check-files") || system!("yarn install")
-
# puts "\n== Copying sample files =="
# unless File.exist?("config/database.yml")
# FileUtils.cp "config/database.yml.sample", "config/database.yml"