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