Skip to content

Commit

Permalink
Updated README to include key SQL setup step
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Bond committed Oct 9, 2013
1 parent 941bd41 commit 0ef2028
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,11 @@ your new `PATH` is loaded:

1. Set up a user account and database in MySQL:

create database class2go;
grant all on class2go.* to class2go@'localhost' identified by 'class2gopw';
grant all on class2go.* to class2go@'127.0.0.1' identified by 'class2gopw';
shell> mysql --user=root mysql
sql> create database class2go;
sql> grant all on class2go.* to class2go@'localhost' sql> identified by 'class2gopw';
sql> grant all on class2go.* to class2go@'127.0.0.1'
sql> identified by 'class2gopw';

[NB:] Remember these values, especially if you change them from these
defaults, as you'll use them later when setting up Django.
Expand Down

0 comments on commit 0ef2028

Please sign in to comment.