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
#!/usr/bin/env bash | |
# bin folder | |
cd ~ | |
mkdir -p ~/bin | |
# base apps and upgrade | |
sudo apt-get update | |
sudo apt-get install -y aptitude curl vim git unzip openssl | |
sudo aptitude -y safe-upgrade |
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
#!/usr/bin/env bash | |
# place in ~/bin or a PATH directory | |
# | |
# usage: | |
# | |
# $ cd /path/to/site | |
# $ serve-static 8443 | |
# | |
# port number defaults to 8000 |
OlderNewer