From 5595b68fb5d5c67876b7e322781f51a19c775797 Mon Sep 17 00:00:00 2001 From: Ethan Soergel Date: Tue, 18 Jun 2013 02:16:54 -0400 Subject: [PATCH 1/2] extended 'SETUP' section of contributing.rst to include instructions for getting the example projects running --- docs/contributing.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/contributing.rst b/docs/contributing.rst index 04aba00..faf2e32 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -28,6 +28,14 @@ Local Installation 2. cd into django-admin2 3. type ``$ pip install -r requirements.txt`` +Try the example projects +-------------------------- + +1. cd into example/ (or example2/) +2. create a symbolic link to djadmin2: `ln -s ../djadmin2` +3. create the database: `python manage.py syncdb` +4. run the dev server: `python manage.py runserver` + Issues! ======= From d0bfca08af882e7a7d1bb9971217fb3555f2fd8a Mon Sep 17 00:00:00 2001 From: Ethan Soergel Date: Tue, 18 Jun 2013 11:02:14 -0400 Subject: [PATCH 2/2] added instructions to run setup.py to contributing.rst --- docs/contributing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributing.rst b/docs/contributing.rst index faf2e32..0f92079 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -27,14 +27,14 @@ Local Installation 1. Create a **virtualenv**. Activate it. 2. cd into django-admin2 3. type ``$ pip install -r requirements.txt`` +4. type ``$ python setup.py develop`` Try the example projects -------------------------- 1. cd into example/ (or example2/) -2. create a symbolic link to djadmin2: `ln -s ../djadmin2` -3. create the database: `python manage.py syncdb` -4. run the dev server: `python manage.py runserver` +2. create the database: `python manage.py syncdb` +3. run the dev server: `python manage.py runserver` Issues!