https://github.com/mediapop/test-project
test project to check if contractors can code
https://github.com/mediapop/test-project
Last synced: 3 months ago
JSON representation
test project to check if contractors can code
- Host: GitHub
- URL: https://github.com/mediapop/test-project
- Owner: mediapop
- Created: 2011-06-21T22:47:49.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-06-29T04:42:01.000Z (almost 14 years ago)
- Last Synced: 2025-01-24T08:11:38.304Z (5 months ago)
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 15
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Install instructions (these are for Linux or OSX):
==================================================You'll need python, git, mysql, distutils, setuptools, pip and virtualenv installed.
* http://www.python.org/download/releases/2.7.1/
* http://git-scm.com/download
* http://www.mysql.comYou'll need a mysql user called perfs with a password of perfs and a database called perfs
mkdir django-project
cd django-project
virtualenv --no-site-packages perfsys
cd perfsys/bin && source activate && cd ../../# this may require you to edit the site.py and add change the path to mysql_config
wget http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.3/MySQL-python-1.2.3.tar.gz/download \
&& mv download MySQL-python-1.2.3.tar.gz \
&& tar -xvf MySQL-python-1.2.3.tar.gz \
&& cd MySQL-python-1.2.3 \
&& python setup.py build \
&& python setup.py install && cd ..;
# begin installing lbiraries needed for project to run
git clone git://github.com/mediapop/mplib.git
git clone git://github.com/mediapop/django-paypal.git && cd django-paypal && python setup.py build && python setup.py install && cd ..
git clone git://github.com/mediapop/Django-SQS.git
git clone git://github.com/hmarr/django-ses.git && cd django-ses && python setup.py build && python setup.py install && cd ..
git clone git://github.com/dcramer/django-sentry.git && cd django-sentry && python setup.py build && python setup.py install && cd ..
git clone git://github.com/django-debug-toolbar/django-debug-toolbar && cd django-debug-toolbar && python setup.py build && python setup.py install && cd ..
git clone git://github.com/facebook/python-sdk.git && cd python-sdk && python setup.py build && python setup.py install && cd ..git clone https://github.com/mediapop/test-project.git
cd test-project/src/perfsystems
python manage.py syncdb && python manage.py runserverYou should now be able to view the test site at http://127.0.0.1:8000