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
32
32
* Copy and adjust database configuration (` cp config/database.yml.example config/database.yml ` )
33
33
* Copy secrets configuration (` cp config/secrets.yml.example config/secrets.yml ` )
34
34
* 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 ` )
37
37
38
38
If you want to be able to upload replays, you'll need to have an
39
39
Amazon S3 account. After setting that up, edit your config/s3.yml
@@ -68,9 +68,7 @@ find each other correctly.
68
68
#### Ruby (rspec)
69
69
70
70
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 `
74
72
* ` rake db:test:prepare `
75
73
76
74
To run tests: ` bundle exec rspec `
You can’t perform that action at this time.
0 commit comments