Added missing items.
This commit is contained in:
parent
04c13029d5
commit
c4b47ec9d9
2 changed files with 6 additions and 1 deletions
|
@ -34,6 +34,7 @@ Getting Started
|
||||||
3. Configure your databases (if needed)
|
3. Configure your databases (if needed)
|
||||||
|
|
||||||
```
|
```
|
||||||
|
zammad@shell> cp config/database.yml.dist config/database.yml
|
||||||
zammad@shell> vi config/database.yml
|
zammad@shell> vi config/database.yml
|
||||||
````
|
````
|
||||||
|
|
||||||
|
@ -41,6 +42,7 @@ Getting Started
|
||||||
|
|
||||||
```
|
```
|
||||||
zammad@shell> export RAILS_ENV=production
|
zammad@shell> export RAILS_ENV=production
|
||||||
|
zammad@shell> rake db:create
|
||||||
zammad@shell> rake db:migrate
|
zammad@shell> rake db:migrate
|
||||||
zammad@shell> rake db:seed
|
zammad@shell> rake db:seed
|
||||||
```
|
```
|
||||||
|
@ -49,7 +51,9 @@ Getting Started
|
||||||
|
|
||||||
```
|
```
|
||||||
zammad@shell> rake assets:precompile
|
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:
|
6. Go to http://localhost:3000/#getting_started and you'll see:
|
||||||
|
|
|
@ -27,6 +27,7 @@ Install Zammad
|
||||||
cd zammad-latest
|
cd zammad-latest
|
||||||
bundle install
|
bundle install
|
||||||
sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib # if needed!
|
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:migrate
|
||||||
rake db:seed
|
rake db:seed
|
||||||
````
|
````
|
||||||
|
|
Loading…
Reference in a new issue