Phone: 585-813-5909 | Email: [email protected] | Website: devonskidmore.com
- Assist in facilitating design sprints.
- Manage designs across multiple platforms with different requirements.
- Design for mobile, 3', and 10' experiences.
Phone: 585-813-5909 | Email: [email protected] | Website: devonskidmore.com
cd $HOME | |
ln -s `which php54` ~/bin/php | |
export PATH=$HOME/bin:$PATH | |
curl -sS https://getcomposer.org/installer | php54 | |
echo -e "\n# Composer\nalias composer=\"php54 \$HOME/composer.phar\"" >> $HOME/.bash_profile | |
source $HOME/.bash_profile |
""" | |
This fabric file makes setting up and deploying a django application much | |
easier to webfaction servers or your dedicated server, but it does make a | |
few assumptions. Namely that you're using Git, Apache and mod_wsgi. Also | |
you should have SSH installed on both the local machine and any servers you | |
want to deploy to. | |
Thanks to: | |
http://github.com/ryanmark/django-project-templates |