-
Notifications
You must be signed in to change notification settings - Fork 5
/
boxen.rb
executable file
·29 lines (22 loc) · 1012 Bytes
/
boxen.rb
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
# This file will be loaded by config/basic early in a Boxen run. Use
# it to provide any custom code or behavior your Boxen setup requires.
# Change the prefix boxen is installed to.
#ENV['BOXEN_HOME'] = '/opt/boxen'
# This needs to be set on linux, or else boxen assumes that your home dir is just /Users/<user-name>
#puts "heyoheyo"
#ENV['BOXEN_SRC_DIR'] = "${HOME}/src"
# Change the repo boxen will use.
# ENV['BOXEN_REPO_NAME'] = 'boxen/our-boxen'
# Boxen binary packaging
# ENV["BOXEN_S3_ACCESS_KEY"] = ''
# ENV["BOXEN_S3_SECRET_KEY"] = ''
# ENV["BOXEN_S3_BUCKET"] = ''
# Auto-report issues on failed runs
# ENV["BOXEN_ISSUES_ENABLED"] = 'yes'
# Submit audit data to an arbitrary HTTP endpoint
# ENV["BOXEN_WEB_HOOK_URL"] = 'https://some-uri.com/boxen'
#
# required for Github Enterprise
# ENV["BOXEN_GITHUB_ENTERPRISE_URL"] = 'https://github.yourdomain.com'
# required for Github Enterprise (defaults to "https://github.com/%s")
# ENV['BOXEN_REPO_URL_TEMPLATE'] = 'https://github.yourdomain.com/%s'