File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 22set -eo pipefail
33
44app_root=" $( cd " $( dirname " $0 " ) /.." ; pwd ) "
5- app_name=" splat "
5+ app_name=" fizzy "
66
77# Use application binstubs
88export PATH=" $app_root /bin:$PATH "
@@ -16,7 +16,6 @@ announce "Installing dependencies"
1616gem install bundler --conservative
1717bundle check || bundle install
1818
19-
2019if [[ $* == * --reset* ]]; then
2120 announce " Recreating database"
2221 rails db:reset
Original file line number Diff line number Diff line change 66# you've limited to :test, :development, or :production.
77Bundler . require ( *Rails . groups )
88
9- module SplatApp
9+ module Fizzy
1010 class Application < Rails ::Application
1111 # Initialize configuration defaults for originally generated Rails version.
1212 config . load_defaults 8.0
Original file line number Diff line number Diff line change 88production :
99 adapter : redis
1010 url : <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
11- channel_prefix : splat_production
11+ channel_prefix : fizzy_production
Original file line number Diff line number Diff line change 6363
6464 # Use a real queuing backend for Active Job (and separate queues per environment).
6565 # config.active_job.queue_adapter = :resque
66- # config.active_job.queue_name_prefix = "splat_production "
66+ # config.active_job.queue_name_prefix = "fizzy_production "
6767
6868 config . action_mailer . perform_caching = false
6969
You can’t perform that action at this time.
0 commit comments