File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ On Mac OSX, you can use homebrew as package manager: http://mxcl.github.com/home
3232 * Copy and adjust database configuration (` cp config/database.yml.example config/database.yml ` )
3333 * Copy secrets configuration (` cp config/secrets.yml.example config/secrets.yml ` )
3434 * Copy s3 configuration (` cp config/s3.yml.example config/s3.yml ` )
35- * Create the database ggtracker needs (` mysql -u root ` and then ` create database ggtracker_development; ` and then ` quit ` )
36- * Run migrations (` bundle exec rake db:migrate ` )
35+ * Create the database ggtracker needs (` rake db: create` )
36+ * Load the latest database schema (` bundle exec rake db:schema:load ` )
3737
3838If you want to be able to upload replays, you'll need to have an
3939Amazon S3 account. After setting that up, edit your config/s3.yml
@@ -68,9 +68,7 @@ find each other correctly.
6868#### Ruby (rspec)
6969
7070 The first time you run tests, set up the test database with:
71- * ` mysql -u root `
72- ** ` create database ggtracker_test; `
73- ** ` quit `
71+ * ` rake db:create `
7472 * ` rake db:test:prepare `
7573
7674 To run tests: ` bundle exec rspec `
You can’t perform that action at this time.
0 commit comments