Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
a6026c9c
Commit
a6026c9c
authored
Aug 30, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gitlab cli for development need at first
parent
4e474028
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
0 deletions
+70
-0
gitlab
gitlab
+70
-0
No files found.
gitlab
0 → 100755
View file @
a6026c9c
#!/usr/bin/env ruby
class
GitlabCli
def
initialize
@path
=
File
.
dirname
(
__FILE__
)
@command
=
ARGV
.
shift
@mode
=
ARGV
.
shift
end
def
execute
case
@command
when
'start'
then
start
when
'stop'
then
stop
else
puts
"-- Usage gitlab start production or gitlab stop development"
end
end
private
def
start
case
@mode
when
'production'
;
system
(
unicorn_start_cmd
)
else
system
(
rails_start_cmd
)
end
system
(
resque_start_cmd
)
end
def
stop
case
@mode
when
'production'
;
system
(
unicorn_stop_cmd
)
else
system
(
rails_stop_cmd
)
end
system
(
resque_stop_cmd
)
end
def
rails_start_cmd
"bundle exec rails s -d"
end
def
rails_stop_cmd
pid
=
File
.
join
(
@path
,
"tmp/pids/server.pid"
)
"kill -QUIT `cat
#{
pid
}
`"
end
def
unicorn_start_cmd
unicorn_conf
=
File
.
join
(
@path
,
"config/unicorn.rb"
)
"bundle exec unicorn_rails -c
#{
unicorn_conf
}
-E production -D"
end
def
unicorn_stop_cmd
pid
=
File
.
join
(
@path
,
"/tmp/pids/unicorn.pid"
)
"kill -QUIT `cat
#{
pid
}
`"
end
def
resque_start_cmd
"./resque.sh > /dev/null 2>&1"
end
def
resque_stop_cmd
pid
=
File
.
join
(
@path
,
"tmp/pids/resque_worker.pid"
)
"kill -QUIT `cat
#{
pid
}
`"
end
end
GitlabCli
.
new
.
execute
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment