Skip to content

Commit

Permalink
Added support for cleardb again, fixing heroku#130
Browse files Browse the repository at this point in the history
  • Loading branch information
jgkim committed Dec 3, 2015
1 parent c6f7527 commit a832843
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,15 @@ module.exports = {
'memcachedcloud': {
image: 'memcached',
env: { 'MEMCACHEDCLOUD_SERVERS': 'memcachedcloud:11211' }
},
'cleardb': {
image: {
name: 'mysql',
env: {
'MYSQL_DATABASE': 'cleardb',
'MYSQL_ALLOW_EMPTY_PASSWORD': 'yes'
}
},
env: { 'CLEARDB_DATABASE_URL': 'mysql://root:@cleardb:3306/cleardb' }
}
};

0 comments on commit a832843

Please sign in to comment.