forked from Vizzuality/cartodb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTermfile
More file actions
41 lines (34 loc) · 810 Bytes
/
Termfile
File metadata and controls
41 lines (34 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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"
end
tab "cartodb app server" do
run "echo 'Hello developer, this is cartodb app server'"
run "cd $CARTODB_PATH"
run "git pull"
run "bundle install"
run "bin/rake db:reset"
run "rails s"
end
tab "cartodb resque server" do
run "cd $CARTODB_PATH"
run "sleep 30"
run "script/resque"
end
tab "cartodb textmate" do
run "cd $CARTODB_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 $CARTODB_PATH/../Windshaft-cartodb"
run "node app.js development"
end