diff --git a/README.md b/README.md index 811dabd3c..3f8e67f51 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Getting Started 3. Configure your databases (if needed) ``` + zammad@shell> cp config/database.yml.dist config/database.yml zammad@shell> vi config/database.yml ```` @@ -41,6 +42,7 @@ Getting Started ``` zammad@shell> export RAILS_ENV=production + zammad@shell> rake db:create zammad@shell> rake db:migrate zammad@shell> rake db:seed ``` @@ -49,7 +51,9 @@ Getting Started ``` zammad@shell> rake assets:precompile - zammad@shell> rails server + zammad@shell> rails server # rails web server + zammad@shell> ruby script/websocket-server.rb # non blocking websocket server + zammad@shell> rails runner 'Session.jobs' # generate overviews on demand, just send changed data to browser ``` 6. Go to http://localhost:3000/#getting_started and you'll see: diff --git a/README_Install_Mac.md b/README_Install_Mac.md index cafac83a9..8dda40638 100644 --- a/README_Install_Mac.md +++ b/README_Install_Mac.md @@ -27,6 +27,7 @@ Install Zammad cd zammad-latest bundle install sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib # if needed! + rake db:create rake db:migrate rake db:seed ````