This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Android | |
## Script to patch up diff reated by `repo diff` | |
if [ -z "$1" ] || [ ! -e "$1" ]; then | |
echo "Usages: $0 <repo_diff_file>"; | |
exit 0; | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# set up your server | |
# ssh [email protected] < rails-vbox | |
# | |
# set up vagrant box | |
# vagrant up | |
# vagrant ssh < rails-vbox | |
export DOMAIN='example.com' | |
export HOSTNAME='mail.example.com' |