d7ab8b6dac
Updated configs to master branch of Cartodb repos.
21 lines
350 B
Bash
Executable File
21 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PORT=3000
|
|
|
|
service postgresql start
|
|
service redis-server start
|
|
service varnish start
|
|
|
|
cd /Windshaft-cartodb
|
|
node app.js development &
|
|
|
|
cd /CartoDB-SQL-API
|
|
node app.js development &
|
|
|
|
cd /cartodb
|
|
source /usr/local/rvm/scripts/rvm
|
|
bundle exec script/restore_redis
|
|
bundle exec script/resque > resque.log 2>&1 &
|
|
bundle exec rails s -p $PORT
|
|
|