commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / tools / scripts / releaser / releaser.conf.txt
1 #!/bin/bash
2
3 ## The GIT repo where we can find branches and create tags
4 ## Note: Choose https or SSH depending on whether you've
5 ## configured HTTP credential cache or SSH keys.
6 #git_base_url=https://github.com/civicrm
7 #git_base_url=git@github.com:civicrm
8
9 ## Warning: This will be saved to the current user's ~/.gitconfig; should match gpg key
10 git_author_name="CiviCRM"
11 git_author_email="info@civicrm.org"
12
13 ## Local web directory for publishing tarballs, md5sums, etc
14 build_dest='/tmp/www/download.civicrm.org/public'
15
16 ## Local web directory for publishing the latest version number
17 latest='/tmp/www/latest.civicrm.org/public'
18
19 ## Local directory for build operations
20 workdir='/tmp/www/download.civicrm.org/workdir'
21
22 ## Passphrase for gpg signing key
23 gpg_pass="top-secret"
24
25 ## Remote web directory for publishing tarballs, md5sums, etc
26 publish_ssh="localhost"
27 publish_stable_dir=/tmp/www/publish/stable
28 publish_latest_dir=/tmp/www/publish/latest
29
30 ## Paths to miscellaneous executables
31 cmd_gitify=/Applications/MAMP/htdocs/sites/all/modules/civicrm/bin/gitify
32 cmd_gpg=gpg
33 cmd_md5sum=md5sum
34 cmd_php=php
35 cmd_rsync=rsync
36 cmd_sftp=sftp
37 cmd_zip=zip