You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/Termfile

43 lines
895 B

# COMMENT OF SCRIPT HERE
# you can make as many tabs as you wish...
# tab names are actually arbitrary at this point too.
setup 'echo "setup"'
tab "redis-server" do
run "echo 'Running redis-server'"
run "cd /tmp"
run "redis-server $CARTODB20_PATH/../redis.conf"
end
tab "cartodb app server" do
run "echo 'Hello developer, this is cartodb app server'"
run "cd $CARTODB20_PATH"
run "git pull"
run "bundle install"
run "bin/rake db:reset"
run "rails s"
end
tab "cartodb resque server" do
run "cd $CARTODB20_PATH"
run "sleep 30"
run "script/resque"
end
tab "cartodb textmate" do
run "cd $CARTODB20_PATH"
run "mate ."
end
tab "cartodb sql api" do
run "cd $CARTODB_SQL_PATH"
run "node app.js development"
end
tab "cartodb tiler" do
run "cd $CARTODB20_PATH/../Windshaft-cartodb"
run ". ~/nvm/nvm.sh"
run "nvm use v0.8.11"
run "node app.js development"
end