Zen
3 years ago
16 changed files with 244 additions and 253 deletions
@ -1,35 +1,35 @@
|
||||
export default { |
||||
bitcoind: { |
||||
export default { |
||||
bitcoind: { |
||||
network: 'mainnet', |
||||
username: 'ao', |
||||
password: 'PASSLINE' |
||||
}, |
||||
bitcoinAverage: { |
||||
pub: '', |
||||
secret: '' |
||||
}, |
||||
clightning: { |
||||
// default is '~/.lightning/bitcoin' |
||||
dir: 'CLIGHTNING_DIR' |
||||
}, |
||||
tor: { |
||||
//hostname: '$TORHOSTNAME' |
||||
hostname: 'TOR_HOSTNAME' |
||||
}, |
||||
sqlite3: { |
||||
}, |
||||
bitcoinAverage: { |
||||
pub: '', |
||||
secret: '' |
||||
}, |
||||
clightning: { |
||||
// default is '~/.lightning/bitcoin' |
||||
dir: 'CLIGHTNING_DIR' |
||||
}, |
||||
tor: { |
||||
//hostname: '$TORHOSTNAME' |
||||
hostname: 'TOR_HOSTNAME' |
||||
}, |
||||
sqlite3: { |
||||
// default is '~/.ao/database.sqlite3' |
||||
file: 'SQLITE_DATABASE' |
||||
}, |
||||
hostnames: [] |
||||
file: 'SQLITE_DATABASE' |
||||
}, |
||||
hostnames: [], |
||||
privateKey: 'PRIVATEKEY', |
||||
memes: { |
||||
memes: { |
||||
// default is ~/.ao/memes' |
||||
dir: 'MEMES_DIR' |
||||
}, |
||||
jitsi: { |
||||
domain: 'meet.dctrl.ca' |
||||
}, |
||||
socketUrl: 'http://localhost:8003' // development |
||||
// socketUrl: null // production |
||||
} |
||||
|
||||
dir: 'MEMES_DIR' |
||||
}, |
||||
jitsi: { |
||||
domain: 'meet.dctrl.ca' |
||||
}, |
||||
socketUrl: 'http://localhost:8003' // development |
||||
// socketUrl: null // production |
||||
} |
||||
|
||||
|
Binary file not shown.
@ -1,10 +1,10 @@
|
||||
# Extra Aliases |
||||
alias b='cd ..' |
||||
|
||||
# Checks for active tmux |
||||
tmux ls &> /dev/null |
||||
if [ $? -eq 0 ] && [ -z "$TMUX" ]; then |
||||
echo "\nYou have an active tmux session! Run 'tmux attach' to restore it.\n" |
||||
|
||||
# Checks for active tmux |
||||
tmux ls &> /dev/null |
||||
if [ $? -eq 0 ] && [ -z "$TMUX" ]; then |
||||
echo "\nYou have an active tmux session! Run 'tmux attach' to restore it.\n" |
||||
elif [ -z "$TMUX" ]; then |
||||
tmux new -s "tmux" |
||||
fi |
||||
fi |
||||
|
Loading…
Reference in new issue