Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
Fixing docs: avoiding access denied to database 'test_openbadges' whe…
Browse files Browse the repository at this point in the history
…n running tests.
  • Loading branch information
zuzelvp committed Mar 20, 2012
1 parent 70c4777 commit 9d093e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -65,8 +65,8 @@ changes, so you don't have to manually reload it.

CREATE DATABASE openbadges;
GRANT ALL PRIVILEGES ON openbadges.* TO badgemaker@localhost IDENTIFIED BY 'secret';
CREATE DATABASE openbadges_test;
GRANT ALL PRIVILEGES ON openbadges_test.* to badgemaker@localhost IDENTIFIED BY 'secret';
CREATE DATABASE test_openbadges;
GRANT ALL PRIVILEGES ON test_openbadges.* to badgemaker@localhost IDENTIFIED BY 'secret';

2. Copy the `openbadges/lib/environments/local-dist.js` to
`openbadges/lib/environments/local.js` and edit the configuration to match
Expand Down

0 comments on commit 9d093e1

Please sign in to comment.