Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Janell-Huyck committed Dec 2, 2024
1 parent 5cb2a29 commit 091a2f5
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 34 deletions.
41 changes: 26 additions & 15 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
APP_PORTFOLIO_DEVISE_KEY = "04df95945691e59c493829316335a454f1b50706a68a2c9ae1fe0084c62d98acc8d1166b984b43beec108b3f756f7c27308f0451b0031ff085e674125639ffe7"
#reCaptcha settings
APP_PORTFOLIO_reCAPTCHA_SITE_KEY=6Lf0bwAVAAAAANKF5ZbjqY-2wTO2HhOnBePLqf3z
APP_PORTFOLIO_reCAPTCHA_SECRET_KEY=6Lf0bwAVAAAAAC9ypnph7cVrCVKxoGvYniMSSll4

# Admin Variables
ADMIN_USERNAME=manager
ADMIN_PASSWORD=Pub1ication$

# Mail Variables
MAIL_SENDER='Melissa Norris <[email protected]>'

# Database settings
APP_PORTFOLIO_DATABASE_ADAPTER=sqlite3
APP_PORTFOLIO_DATABASE_HOST=
APP_PORTFOLIO_DATABASE_NAME=db/development.sqlite3
APP_PORTFOLIO_DATABASE_PASSWORD=
APP_PORTFOLIO_DATABASE_POOL=5
APP_PORTFOLIO_DATABASE_PORT=
APP_PORTFOLIO_DATABASE_TIMEOUT=5000
APP_PORTFOLIO_DATABASE_USERNAME=
AAEC_DATABASE_ADAPTER=mysql2
AAEC_DATABASE_HOST=libitdbtest.libraries.uc.edu
AAEC_DATABASE_NAME=lotm
AAEC_DATABASE_PASSWORD=Y9joPskKX2
AAEC_DATABASE_POOL=5
AAEC_DATABASE_PORT=
AAEC_DATABASE_TIMEOUT=5000
AAEC_DATABASE_USERNAME=lotm_admin

APP_PORTFOLIO_PRODUCTION_MAILER_URL=localhost:3000
RAILS_ENV=production
RAILS_RELATIVE_URL_ROOT=/aaec
RAILS_MASTER_KEY=4e9a1edbef0e3a45e650d99d7912c9d6

#reCaptcha settings
APP_PORTFOLIO_reCAPTCHA_SITE_KEY=""
APP_PORTFOLIO_reCAPTCHA_SECRET_KEY=""
# Publication year
AAEC_PUBLICATION_YEAR_START="January 2020"
AAEC_PUBLICATION_YEAR_END="December 2020"

#mailer settings
MAIL_SMTP_ADDRESS='localhost'
# Expiration Date
EXPIRATION_DATE="Jul 15 2021"
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
/coverage

# Ignore yarn.lock auto-generated file
yarn.lock
#yarn.lock

# Ignore .DS_Store files generated in MAC OS
.DS_Store
Expand All @@ -51,3 +51,7 @@ yarn.lock

#Ignore Rubymine files
.idea/

# Ignore production .env files
.env.production
.env.production.local
2 changes: 1 addition & 1 deletion app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//= require rails-ujs
//= require jquery3
//= require bootstrap-sprockets
//= require bootstrap
//= require gritter
//= require activestorage
//= require turbolinks
Expand Down
11 changes: 0 additions & 11 deletions bin/yarn

This file was deleted.

2 changes: 1 addition & 1 deletion config/deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
WARN
ask :value, "Sure you want to continue deploying `#{branch}` on #{stage}? (Y)"

if fetch(:value) != 'Y'
if fetch(:value).to_s.downcase != 'y'
puts "\nDeploy cancelled!"
exit
end
Expand Down
5 changes: 0 additions & 5 deletions package.json

This file was deleted.

0 comments on commit 091a2f5

Please sign in to comment.