-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
stevenla edited this page Jun 2, 2012
·
17 revisions
This tutorial assumes that you have Ubuntu Server 12.04 LTS installed and running.
- python-pip
- python-mysqldb
- mysql-server
- coffeescript
- git
sudo apt-get install python-pip ....
- Django==1.3
- south
- django-coffeescript
- django-compressor
- django-haystack
- django-tastypie
- legit
- whoosh
sudo pip install Django==1.3 ....
- less
sudo npm install less ....
$ mysql -u root -p
Enter password:
mysql> create database sdzoo_paws;
mysql> grant all privileges on sdzoo_paws.* to paws@'localhost' identified by 'paws';
mysql> flush privileges;
./manage.py rebuild_index
$ git clone [email protected]:mvismonte/paws.git
$ ./manage.py schemamigration main --auto
$ cd paws
$ ./manage.py syncdb
$ ./manage.py migrate main
$ ./manage.py runserver 0.0.0.0:8000