2019-08-14 09:48:44 +00:00
|
|
|
![ChatUI progess](https://chatwoot.com/images/dashboard-screen.png)
|
|
|
|
|
|
|
|
## Build Setup
|
|
|
|
|
2019-08-17 20:23:55 +00:00
|
|
|
|
|
|
|
### Install JS dependencies
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
``` bash
|
2019-08-17 18:02:49 +00:00
|
|
|
yarn install
|
2019-08-17 20:23:55 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Install ImageMagik
|
|
|
|
|
|
|
|
```bash
|
|
|
|
brew install imagemagick
|
|
|
|
```
|
|
|
|
|
|
|
|
### Setup rails server
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-08-17 20:23:55 +00:00
|
|
|
```bash
|
2019-08-14 09:48:44 +00:00
|
|
|
# install ruby dependencies
|
|
|
|
bundle
|
|
|
|
|
2019-08-17 18:02:49 +00:00
|
|
|
# copy database config
|
2019-08-17 18:03:21 +00:00
|
|
|
cp shared/config/database.yml config/database.yml
|
2019-08-17 18:02:49 +00:00
|
|
|
|
2019-08-17 19:14:44 +00:00
|
|
|
# copy frontend env file
|
|
|
|
cp .env.sample .env
|
|
|
|
|
2019-08-17 18:02:49 +00:00
|
|
|
# run db migrations
|
|
|
|
bundle exec rake db:migrate
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
# fireup the server
|
|
|
|
foreman start
|
|
|
|
```
|