Remove the mysql setup

no longer needed now that we're not connecting to 37id
This commit is contained in:
Mike Dalessio
2025-10-03 21:55:49 -04:00
parent 21ea628729
commit 6a9b98e44f
2 changed files with 0 additions and 10 deletions
-3
View File
@@ -15,9 +15,6 @@ system("gem install bundler --conservative")
system("bundle config set --local auto_install true")
system("bundle check") || system!("bundle install")
require_relative "../lib/bootstrap"
load File.expand_path("../gems/fizzy-saas/bin/setup", __dir__) unless Bootstrap.oss_config?
puts "\n== Preparing database =="
if ARGV.include?("--reset")
system! "bin/rails db:drop db:create db:schema:load db:prepare db:seed"
-7
View File
@@ -1,7 +0,0 @@
#!/usr/bin/env ruby
def system!(*args) system(*args, exception: true) end
puts "\n== Starting MySQL =="
system "[ -d ~/Work/basecamp/docker-dev ] && git -C ~/Work/basecamp/docker-dev pull || gh repo clone basecamp/docker-dev ~/Work/basecamp/docker-dev"
system! "~/Work/basecamp/docker-dev/setup mysql80"