Discover what your customers want. Change the meaning of customer support by adapting to the best industry standards of customer support management.
- NodeJs >= 6.3.1
- Ruby = 2.3.1
- rails 5.0
- mysql
Note: These installation steps assume you have setup rails environment prerequists already. If you want to configure your machine for rails head to Install Rails and follow the instructions as per you OS
-
Move to the directory and install gem dependencies
cd tsupport bundle install
-
Migrate the database Note: you need to provide your mysql credentials details in
config/database.yml
rails db:create rails db:migrate rails db:seed #this will ask for admin user email and password
Please note there is a test db dump in
src/dbdumps/tsupport_development.sql
you can also restore it with this commend:mysql -u USERNAME -p tsupport_development < src/dbdumps/tsupport_development.sql
-
Install angular2 for frontend
npm install -g typings npm run postinstall
-
Run the rails server in the main directory with
rails server
-
Open http://localhost:3000 in your browser