Skip to content

Commit db67e4a

Browse files
committed
Use overmind
1 parent e87c7c7 commit db67e4a

4 files changed

Lines changed: 37 additions & 0 deletions

File tree

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ group :development, :test do
2727
end
2828

2929
group :development do
30+
gem 'overmind'
3031
end
3132

3233
group :test do

Gemfile.lock

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,11 @@ GEM
206206
racc (~> 1.4)
207207
nokogiri (1.16.3-x86_64-linux)
208208
racc (~> 1.4)
209+
overmind (2.5.0)
210+
overmind (2.5.0-arm-linux)
211+
overmind (2.5.0-arm64-darwin)
212+
overmind (2.5.0-x86-linux)
213+
overmind (2.5.0-x86_64-darwin)
209214
paco (0.2.3)
210215
parser (3.3.0.5)
211216
ast (~> 2.4.1)
@@ -345,6 +350,7 @@ DEPENDENCIES
345350
grpc (~> 1.37)
346351
jsbundling-rails
347352
nanoid
353+
overmind
348354
propshaft
349355
puma (~> 6.0)
350356
rails (~> 7.1.0)

bin/dev

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env sh
2+
3+
bin/overmind start -f Procfile.dev

bin/overmind

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
#
5+
# This file was generated by Bundler.
6+
#
7+
# The application 'overmind' is installed as part of a gem, and
8+
# this file is here to facilitate running it.
9+
#
10+
11+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
12+
13+
bundle_binstub = File.expand_path("bundle", __dir__)
14+
15+
if File.file?(bundle_binstub)
16+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
17+
load(bundle_binstub)
18+
else
19+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
20+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
21+
end
22+
end
23+
24+
require "rubygems"
25+
require "bundler/setup"
26+
27+
load Gem.bin_path("overmind", "overmind")

0 commit comments

Comments
 (0)