Skip to content
Snippets Groups Projects
Commit 33874920 authored by Wayne Motycka's avatar Wayne Motycka
Browse files

add DB cfg for mysql

parent 4b08a420
Branches master
No related tags found
No related merge requests found
......@@ -6,8 +6,18 @@
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: sqlite3
database: db/development.sqlite3
adapter: mysql2
username: casino
password: <%= begin IO.read(File.join(Rails.root,".db")).chomp rescue "" end %>
database: casino
pool: 5
timeout: 5000
production:
adapter: mysql2
username: casino
password: <%= begin IO.read(File.join(Rails.root,".db")).chomp rescue "" end %>
database: casino
pool: 5
timeout: 5000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment