Added missing items.

This commit is contained in:
Martin Edenhofer 2013-01-22 22:43:31 +01:00
parent 04c13029d5
commit c4b47ec9d9
2 changed files with 6 additions and 1 deletions

View file

@ -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:

View file

@ -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
````