21 lines
631 B
Bash
Executable File
21 lines
631 B
Bash
Executable File
#!/bin/bash
|
|
|
|
perl -pi -e 's/cartodb\.localhost/$ENV{"HOSTNAME"}/g' /etc/nginx/sites-enabled/default /cartodb/config/app_config.yml /Windshaft-cartodb/config/environments/development.js
|
|
|
|
service postgresql start
|
|
service redis-server start
|
|
/opt/varnish/sbin/varnishd -a :6081 -T localhost:6082 -s malloc,256m -f /etc/varnish.vcl
|
|
service nginx 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 thin start --threaded -p 3000 --threadpool-size 5
|