Last active
August 29, 2015 14:06
-
-
Save tingletech/1c479e10e8a41213c110 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
mkdir project | |
cd project | |
which virtualenv | |
# if not installed `sudo easy_install virtualenv` | |
virtualenv . | |
. bin/activate | |
# needed for Pillow | |
brew install libtiff libjpeg webp little-cms2 | |
git clone https://github.com/tingletech/md5s3stash.git | |
cd md5s3stash | |
pip install -r requirements.txt | |
export BUCKET_BASE='ucldc' | |
python thumbnail.py | |
# thumnail server now running on localhost:8888 | |
# open a new window and go back to `project` folder | |
. bin/activate | |
git clone https://github.com/tingletech/public_interface.git | |
cd public_interface | |
git checkout thumbnail | |
pip install -r requirements.txt | |
python manage.py syncdb | |
python manage.py runserver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment