mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-16 03:41:41 +00:00
do not use a root password for local dev
This commit is contained in:
parent
defe0a6f01
commit
95994eb1b4
2 changed files with 2 additions and 3 deletions
|
@ -2,7 +2,6 @@ language: ruby
|
|||
bundler_args: --without development production
|
||||
rvm:
|
||||
- 1.9.3
|
||||
- jruby-19mode # JRuby in 1.9 mode
|
||||
before_script:
|
||||
- mysql -e 'create database huginn_test;'
|
||||
script: "bundle exec rake"
|
||||
|
|
|
@ -2,7 +2,7 @@ development:
|
|||
adapter: mysql2
|
||||
database: huginn_development
|
||||
username: root
|
||||
password: password
|
||||
password:
|
||||
socket: <%= ["/var/run/mysqld/mysqld.sock", "/opt/local/var/run/mysql5/mysqld.sock", "/tmp/mysql.sock"].find{ |path| File.exist? path } %>
|
||||
encoding: utf8
|
||||
reconnect: true
|
||||
|
@ -15,7 +15,7 @@ test:
|
|||
adapter: mysql2
|
||||
database: huginn_test
|
||||
username: root
|
||||
password: password
|
||||
password:
|
||||
socket: <%= ["/var/run/mysqld/mysqld.sock", "/opt/local/var/run/mysql5/mysqld.sock", "/tmp/mysql.sock"].find{ |path| File.exist? path } %>
|
||||
encoding: utf8
|
||||
reconnect: true
|
||||
|
|
Loading…
Add table
Reference in a new issue