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