19 lines
265 B
Bash
19 lines
265 B
Bash
|
#!/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
|
||
|
bundle exec script/resque &
|
||
|
bundle exec rails s -p $PORT
|
||
|
|