forked from jodylent/project-show-animal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput_vars.sh
More file actions
37 lines (34 loc) · 1.13 KB
/
input_vars.sh
File metadata and controls
37 lines (34 loc) · 1.13 KB
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
30
31
32
33
34
35
36
37
#!/usr/bin/env bash
########################################
# Jody Lent
# Input vars to new_mac.sh
# Used by subscripts
# REPLACE WITH YOUR OWN VALUES
#
# N.B. new_mac.sh EXPORTS `SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"`
#
# If you keep a dotfiles repo, Strap looks for it here:
# -- "https://github.com/$STRAP_GITHUB_USER/dotfiles"
# It then does the following to "install" them:
# cd ~/.dotfiles
# for i in script/setup script/bootstrap; do
# if [ -f "$i" ] && [ -x "$i" ]; then
# log "Running dotfiles $i:"
# "$i" 2>/dev/null
# break
# fi
# done
#
# If you have a Brewfile, Strap looks for it here:
# -- "https://github.com/$STRAP_GITHUB_USER/homebrew-brewfile/Brewfile"
#
########################################
# Strap script vars
export STRAP_GIT_NAME='Jacob Tomaw'
export STRAP_GIT_EMAIL='60254+flatiron32@users.noreply.github.com'
export STRAP_GITHUB_USER='flatiron32'
export STRAP_GITHUB_TOKEN='I copy my ssh key and use ssh, not https'
export COMPANY_REPOMGMT_URL='gitbucket.yourcompany.com'
# Subscript vars
#export NEW_HOSTNAME='jlent-mbp'
########################################