Skip to content
This repository has been archived by the owner on Jan 14, 2019. It is now read-only.

Commit

Permalink
retouched docs and setup.py
Browse files Browse the repository at this point in the history
git-svn-id: https://django-reusableapps.googlecode.com/svn/trunk@8 7cfdb1fb-383f-0410-8e90-0daa5c5b9012
  • Loading branch information
leidel committed Sep 9, 2008
1 parent 0742486 commit 56214dc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions docs/overview.rst
Expand Up @@ -22,24 +22,24 @@ Get the source from the application site at::

To install *reusableapps*, follow these steps:

1. Follow the instructions in the `INSTALL file`_.
2. Add ``import reusableapps`` to the top of your `settings file`_.
3. Add a new setting to your `settings file`_, a list of locations of
reusable apps, in search order. Note that these paths should use
Unix-style forward slashes, even on Windows.
For example::
REUSABLE_APPS_DIRS = (
'/home/jannis/django/reusable_apps',
'/usr/share/django/apps',
'C:/www/django/apps'
)
4. Add to the last line of your settings file (after the INSTALLED_APPS_
and REUSABLE_APPS_DIRS setting)::
INSTALLED_APPS = reusableapps.search(REUSABLE_APPS_DIRS, INSTALLED_APPS)
1. Follow the instructions in the `INSTALL file`_.
2. Add ``import reusableapps`` to the top of your `settings file`_.
3. Add a new setting to your `settings file`_, a list of locations of
reusable apps, in search order. Note that these paths should use
Unix-style forward slashes, even on Windows.

For example::
REUSABLE_APPS_DIRS = (
'/home/jannis/django/reusable_apps',
'/usr/share/django/apps',
'C:/www/django/apps'
)
4. Add to the last line of your settings file (after the INSTALLED_APPS_
and REUSABLE_APPS_DIRS setting)::
INSTALLED_APPS = reusableapps.search(REUSABLE_APPS_DIRS, INSTALLED_APPS)

Putting it together
-------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@

setup(name='django-'+app_name,
version=version,
description='Reusable, pluggable Django apps',
description='Reusable Django apps with setuptools',
long_description=open('docs/overview.rst').read(),
author='Jannis Leidel',
author_email='jannis@leidel.info',
Expand Down

0 comments on commit 56214dc

Please sign in to comment.