Skip to content

Commit

Permalink
Adding more information for django beginners
Browse files Browse the repository at this point in the history
Adding more information about django admin for jango beginners
  • Loading branch information
belug23 committed Feb 28, 2013
1 parent 84cebe2 commit 18c3bfa
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Expand Up @@ -21,22 +21,24 @@ Get it from github:
Quick start
-----------

Contrib Admin is required.
Contrib Admin is required so uncomment "django.contrib.admin" in the INSTALLED_APPS setting.

1. Add "geoprisma_config" to your INSTALLED_APPS setting like this::
Add "geoprisma_config" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = (
...
'django.contrib.admin',
...
'geoprisma_config',
)

2. Include the geoprisma_config URLconf in your project urls.py like this::
Include the geoprisma_config URLconf in your project urls.py like this::

url(r'^geoprisma_config/', include('geoprisma_config.urls')),

3. Run `python manage.py syncdb` to create the geoprisma_config models.
Run `python manage.py syncdb` to create the geoprisma_config models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
Start the development server and visit http://127.0.0.1:8000/admin/
to manage your geoprisma configs (you'll need the Admin app enabled).

Production Setup
Expand Down Expand Up @@ -79,4 +81,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 comments on commit 18c3bfa

Please sign in to comment.