Skip to content

Instantly share code, notes, and snippets.

@bombilee
Last active December 18, 2015 14:18
Show Gist options
  • Save bombilee/5795685 to your computer and use it in GitHub Desktop.
Save bombilee/5795685 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>gitlab.puma</string>
<key>ProgramArguments</key>
<array>
<string>rm</string>
<string>/Users/git/gitlab/tmp/sockets;</string>
<string>bundle</string>
<string>exec</string>
<string>puma</string>
<string>-C</string>
<string>/Users/git/gitlab/config/puma.rb</string>
<string>-E</string>
<string>production</string>
</array>
<key>EnvironmentVariables</key>
<array>
<key>RAILS_ENV</key>
<string>production</string>
</array>
<key>WorkingDirectory</key>
<string>/Users/git/gitlab</string>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>git</string>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>gitlab.sidekiq</string>
<key>ProgramArguments</key>
<array>
<string>bundle</string>
<string>exec</string>
<string>sidekiq</string>
<string>-q</string>
<string>post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default</string>
<string>-e</string>
<string>production</string>
<string>-P</string>
<string>/Users/git/gitlab/tmp/pids/sidekiq.pid</string>
<string>rake</string>
<string>sidekiq:start</string>
</array>
<key>EnvironmentVariables</key>
<array>
<key>RAILS_ENV</key>
<string>production</string>
</array>
<key>WorkingDirectory</key>
<string>/Users/git/gitlab</string>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>git</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment