Testing
Go to file
2008-06-29 21:23:39 -04:00
devel Remove guide from dashboard and link to wikiFix for FS#10647 2008-06-21 19:38:18 -04:00
main make package names unique 2008-06-27 21:16:38 -04:00
media add delete functionality to todo lists 2008-06-27 22:13:40 -04:00
news use a nicer decorator 2008-06-27 16:50:01 -04:00
packages drop an unnecessary db hit 2008-06-29 20:44:02 -04:00
scripts fix depends bug in reporead 2008-06-29 21:23:39 -04:00
templates add maintainer column to search results 2008-06-29 20:08:18 -04:00
todolists fix problem with deleting packages from a list 2008-06-29 19:17:20 -04:00
wiki Removed login_required from the individual views. 2008-04-09 22:43:07 -07:00
__init__.py
.gitignore updated gitignore 2008-04-16 18:39:04 -07:00
AUTHORS Cherry pick of Thayer's archweb_pub retheme work 2008-01-10 00:23:31 -08:00
HACKING
LICENSE
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 Template fix. doh! 2008-06-04 18:50:49 -07:00
urls.py add delete functionality to todo lists 2008-06-27 22:13:40 -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