Skip to content

Commit 18e2c57

Browse files
committed
Remove traces of 'vanilla'
1 parent dc01208 commit 18e2c57

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

app/views/layouts/application.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>VanillaRails7</title>
4+
<title>Rails Template</title>
55
<meta name="viewport" content="width=device-width,initial-scale=1">
66
<%= csrf_meta_tags %>
77
<%= csp_meta_tag %>

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# you've limited to :test, :development, or :production.
77
Bundler.require(*Rails.groups)
88

9-
module VanillaRails7
9+
module RailsTemplate
1010
class Application < Rails::Application
1111
# Initialize configuration defaults for originally generated Rails version.
1212
config.load_defaults 7.0

config/cable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ test:
88
production:
99
adapter: redis
1010
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
11-
channel_prefix: vanilla_rails_7_production
11+
channel_prefix: rails_template_production

config/database.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ default: &default
2323

2424
development:
2525
<<: *default
26-
database: vanilla_rails_7_development
26+
database: rails_template_development
2727

2828
# The specified database role being used to connect to postgres.
2929
# To create additional roles in postgres see `$ createuser --help`.
3030
# When left blank, postgres will use the default role. This is
3131
# the same name as the operating system user running Rails.
32-
#username: vanilla_rails_7
32+
#username: rails_template
3333

3434
# The password associated with the postgres role (username).
3535
#password:
@@ -57,7 +57,7 @@ development:
5757
# Do not set this db to the same as development or production.
5858
test:
5959
<<: *default
60-
database: vanilla_rails_7_test
60+
database: rails_template_test
6161

6262
# As with config/credentials.yml, you never want to store sensitive information,
6363
# like your database password, in your source code. If your source code is
@@ -81,6 +81,6 @@ test:
8181
#
8282
production:
8383
<<: *default
84-
database: vanilla_rails_7_production
85-
username: vanilla_rails_7
86-
password: <%= ENV["VANILLA_RAILS_7_DATABASE_PASSWORD"] %>
84+
database: rails_template_production
85+
username: rails_template
86+
password: <%= ENV["RAILS_TEMPLATE_DATABASE_PASSWORD"] %>

config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
# Use a real queuing backend for Active Job (and separate queues per environment).
6262
# config.active_job.queue_adapter = :resque
63-
# config.active_job.queue_name_prefix = "vanilla_rails_7_production"
63+
# config.active_job.queue_name_prefix = "rails_template_production"
6464

6565
config.action_mailer.perform_caching = false
6666

0 commit comments

Comments
 (0)