Skip to content

Commit 2cc1b51

Browse files
committed
rename
1 parent cc7c32b commit 2cc1b51

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# check=error=true
33

44
# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand:
5-
# docker build -t rails_8_template .
6-
# docker run -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name rails_8_template rails_8_template
5+
# docker build -t macros_web .
6+
# docker run -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name macros_web macros_web
77

88
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
99

app/views/pwa/manifest.json.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Rails8Template",
2+
"name": "MacrosWeb",
33
"icons": [
44
{
55
"src": "/icon.png",
@@ -16,7 +16,7 @@
1616
"start_url": "/",
1717
"display": "standalone",
1818
"scope": "/",
19-
"description": "Rails8Template.",
19+
"description": "MacrosWeb.",
2020
"theme_color": "red",
2121
"background_color": "red"
2222
}

config/application.rb

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

21-
module Rails8Template
21+
module MacrosWeb
2222
class Application < Rails::Application
2323
# Initialize configuration defaults for originally generated Rails version.
2424
config.load_defaults 8.0

config/database.yml

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

2323
development:
2424
<<: *default
25-
database: rails_8_template_development
25+
database: macros_web_development
2626

2727
# The specified database role being used to connect to PostgreSQL.
2828
# To create additional roles in PostgreSQL see `$ createuser --help`.
2929
# When left blank, PostgreSQL will use the default role. This is
3030
# the same name as the operating system user running Rails.
31-
#username: rails_8_template
31+
#username: macros_web
3232

3333
# The password associated with the PostgreSQL role (username).
3434
#password:
@@ -56,7 +56,7 @@ development:
5656
# Do not set this db to the same as development or production.
5757
test:
5858
<<: *default
59-
database: rails_8_template_test
59+
database: macros_web_test
6060

6161
# As with config/credentials.yml, you never want to store sensitive information,
6262
# like your database password, in your source code. If your source code is
@@ -85,13 +85,13 @@ production:
8585
encoding: utf8
8686
cache:
8787
<<: *primary_production
88-
database: rails_8_template_production_cache
88+
database: macros_web_production_cache
8989
migrations_paths: db/cache_migrate
9090
queue:
9191
<<: *primary_production
92-
database: rails_8_template_production_queue
92+
database: macros_web_production_queue
9393
migrations_paths: db/queue_migrate
9494
cable:
9595
<<: *primary_production
96-
database: rails_8_template_production_cable
96+
database: macros_web_production_cable
9797
migrations_paths: db/cable_migrate

config/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Name of your application. Used to uniquely configure containers.
2-
service: rails_8_template
2+
service: macros_web
33

44
# Name of the container image.
5-
image: your-user/rails_8_template
5+
image: your-user/macros_web
66

77
# Deploy to these servers.
88
servers:
@@ -47,7 +47,7 @@ env:
4747
# WEB_CONCURRENCY: 2
4848

4949
# Match this to any external database server to configure Active Record correctly
50-
# Use rails_8_template-db for a db accessory server on same machine via local kamal docker network.
50+
# Use macros_web-db for a db accessory server on same machine via local kamal docker network.
5151
# DB_HOST: 192.168.0.2
5252

5353
# Log everything from Rails
@@ -65,7 +65,7 @@ aliases:
6565
# Use a persistent storage volume for sqlite database files and local Active Storage files.
6666
# Recommended to change this to a mounted volume path that is backed up off server.
6767
volumes:
68-
- "rails_8_template_storage:/rails/storage"
68+
- "macros_web_storage:/rails/storage"
6969

7070

7171
# Bridge fingerprinted assets, like JS and CSS, between versions to avoid

0 commit comments

Comments
 (0)