Testing
Go to file
Dan McGee 8f11dd9065 Fix missing version in checksums on download page
Forgot to move the 'endwith' tag a bit further down the page below the last
version reference. Fixes FS#19584.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-05-26 08:52:40 -05:00
devel reporead: use the DB package we already have 2010-05-24 11:29:35 -05:00
main Merge branch 'redesign' 2010-05-24 21:13:46 -05:00
media Make testing italics style work 2010-05-25 14:42:57 -05:00
mirrors
news
packages Kill td_input template and tag 2010-05-17 15:55:38 -05:00
public Make group membership use Django groups 2010-05-17 10:38:44 -05:00
templates Fix missing version in checksums on download page 2010-05-26 08:52:40 -05:00
todolists Fix undefined variable issue 2010-05-21 15:48:32 -05:00
__init__.py
.gitignore
AUTHORS Updated maintainer in AUTHORS file 2010-04-18 23:36:33 -05:00
feeds.py feeds: move link from method to attribute 2010-05-04 10:03:00 -05:00
HACKING
LICENSE
local_settings.py.example
manage.py
README
settings.py Redirect to root url after login 2010-05-17 14:49:43 -05:00
sitemaps.py
TODO
urls.py Remove Arch-Based Projects 2010-04-18 23:27:27 -05:00

# License
 See LICENSE file.

# Authors
 See AUTHORS file.

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

# 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

 6. To optionally populate the database with real data:
    $ wget ftp://ftp.archlinux.org/core/os/i686/core.db.tar.gz
    $ scripts/reporead.py i686 ./core.db.tar.gz

    (alter architecture and repo to get x86_64 and extra packages if needed)