Testing
Go to file
2008-08-16 13:01:27 -04:00
devel Remove guide from dashboard and link to wikiFix for FS#10647 2008-06-21 19:38:18 -04:00
main add signoff model for capturing signoffs 2008-08-16 13:01:27 -04:00
media add signoffs to the main menu 2008-08-16 12:31:44 -04:00
news fix permission bug on news 2008-07-30 12:59:09 -04:00
packages improve the template 2008-08-06 17:58:15 -04:00
scripts minor refactor to available_arches 2008-07-05 21:36:47 -04:00
templates add signoffs to the main menu 2008-08-16 12:31:44 -04:00
todolists fix problem with to-do list showing testing packages 2008-07-22 20:47:26 -04:00
wiki Removed login_required from the individual views. 2008-04-09 22:43:07 -07: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 Cherry pick of Thayer's archweb_pub retheme work 2008-01-10 00:23:31 -08: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
migrate_signoff.sql add signoff model for capturing signoffs 2008-08-16 13:01:27 -04: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 boilerplate for new signoffs code 2008-08-06 17:54:11 -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