diff --git a/.gitignore b/.gitignore index eb3489a9..56a6af2d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ # or operating system, you probably want to add a global ignore instead: # git config --global core.excludesfile ~/.gitignore_global +/config/database.yml + # Ignore bundler config /.bundle diff --git a/config/database.yml b/config/database.yml index dd462777..7b4766e5 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,32 +1,32 @@ development: min_messages: WARNING adapter: postgresql - host: ec2-54-243-217-241.compute-1.amazonaws.com + host: 127.0.0.1 port: 5432 encoding: unicode - database: dbct9hosrirq2h + database: issad-development pool: 5 - username: tkbwavghytilon - password: "To6z-64f1Lr3LqpWrcLBPG2Xdv" + username: postgres + password: "3112" test: min_messages: WARNING adapter: postgresql - host: ec2-54-243-217-241.compute-1.amazonaws.com + host: 127.0.0.1 port: 5432 encoding: unicode - database: dbct9hosrirq2h + database: issad-test pool: 5 - username: tkbwavghytilon - password: "To6z-64f1Lr3LqpWrcLBPG2Xdv" + username: postgres + password: "3112" production: min_messages: WARNING adapter: postgresql - host: ec2-54-243-217-241.compute-1.amazonaws.com + host: 127.0.0.1 port: 5432 encoding: unicode - database: dbct9hosrirq2h + database: issad-production pool: 5 - username: tkbwavghytilon - password: "To6z-64f1Lr3LqpWrcLBPG2Xdv" + username: postgres + password: "3112" \ No newline at end of file