Skip to content

Commit

Permalink
Changes production deploy url.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Scherz committed Mar 11, 2024
1 parent b54e430 commit a349412
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/deploy/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
append :linked_dirs, 'tmp', 'log'
ask(:username, nil)
ask(:password, nil, echo: false)
server 'libapps2.libraries.uc.edu', user: fetch(:username), password: fetch(:password), port: 22
server 'libapps.libraries.uc.edu', user: fetch(:username), password: fetch(:password), port: 22
ask(:value, 'Have you submitted and received an approved Change Management Request? (Y)')
if fetch(:value) != 'Y'
puts "\nDeploy cancelled!"
Expand Down
1 change: 1 addition & 0 deletions config/initializers/application_controller_renderer.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# ActiveSupport::Reloader.to_prepare do
Expand Down
1 change: 1 addition & 0 deletions config/initializers/backtrace_silencers.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
Expand Down
1 change: 1 addition & 0 deletions config/initializers/content_security_policy.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# Define an application-wide content security policy
Expand Down
1 change: 1 addition & 0 deletions config/initializers/inflections.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# Add new inflection rules using the following format. Inflections
Expand Down
1 change: 1 addition & 0 deletions config/initializers/mime_types.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# Add new mime types for use in respond_to blocks:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

class ChangeNotesTypeInSoftwareRecord < ActiveRecord::Migration[6.0]
def change
change_column :software_records, :notes, :text
end
end

0 comments on commit a349412

Please sign in to comment.