Testing
Go to file
2008-10-10 18:26:43 -04:00
devel make form submit some but not all values 2008-10-07 15:59:40 -04:00
main fix another inefficient query 2008-10-10 18:26:43 -04:00
media replace package search with a nonfunctional newform 2008-10-07 13:15:59 -04:00
news drop some unused imports 2008-10-05 21:41:08 -04:00
packages simplify package details view 2008-10-10 17:59:11 -04:00
scripts drop a bunch of unusued imports 2008-10-05 21:46:28 -04:00
templates use standard messaging 2008-10-10 17:59:31 -04:00
todolists port to django 1.0 2008-10-10 18:00:35 -04:00
__init__.py Initial import for public release... 2007-11-03 03:45:10 -04:00
.gitignore updated gitignore 2008-04-16 18:39:04 -07:00
AUTHORS add myself to the Author's list 2008-10-07 10:53:30 -04:00
HACKING Added hacking doc. 2007-11-06 21:02:33 -05:00
LICENSE Initial import for public release... 2007-11-03 03:45:10 -04:00
local_settings.py.example update 2008-04-11 21:35:49 -07:00
manage.py Massive retab fest. 2007-12-29 16:42:55 -08:00
README Updated readme 2008-04-17 18:57:06 -07:00
settings.py drop wiki app 2008-10-10 18:04:41 -04:00
TODO knock of todo item 2008-10-10 17:28:14 -04:00
urls.py change of style, I decided I like to have a wrapper for all generic views 2008-10-10 18:00:16 -04:00

# License
 See LICENSE file.

# Authors
 See AUTHORS file.

# Dependencies
 - python
 - mysql-python or python-pysqlite
 - Django = 0.96

# Installation
For a simple testing installation:

 1. Install dependencies.
    $ pacman -S django python-pysqlite sqlite3
 
 2. Copy local_settings.py.example to local_settings.py and modify.
    Make sure to uncomment the appropriate db section (either sqlite or mysql).

 3. Sync the database to create it.
    $ python manage.py syncdb

 4. Load the fixtures to prepopulate some data.
    $ python manage.py loaddata arches.json repos.json
    
 5. Use the following commands to start a service instance
    $ python manage.py runserver