Testing
Go to file
eliott 4aee4dd236 subtle changes to settings files
moved cache controls to local_settings
2008-01-05 17:08:07 -08:00
devel Fixed a bug with pkgmaint page 2008-01-03 14:37:43 -05:00
lib Massive retab fest. 2007-12-29 16:42:55 -08:00
media Added back in the needed logos to the media root 2007-12-30 12:44:25 -08:00
news Removed import no longer used. 2007-12-29 16:53:03 -08:00
packages Fixes for FS#7980 2007-12-30 11:32:50 -08:00
scripts removed helper script 2007-12-29 14:53:21 -08:00
templates Changed color alternation on devel index (todolist) to be conformant. 2007-12-30 17:49:20 -05:00
todolists Massive retab fest. 2007-12-29 16:42:55 -08:00
wiki Massive retab fest. 2007-12-29 16:42:55 -08:00
__init__.py Initial import for public release... 2007-11-03 03:45:10 -04:00
.gitignore Initial import for public release... 2007-11-03 03:45:10 -04:00
AUTHORS Initial import for public release... 2007-11-03 03:45:10 -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 subtle changes to settings files 2008-01-05 17:08:07 -08:00
manage.py Massive retab fest. 2007-12-29 16:42:55 -08:00
README updated readme 2008-01-05 16:18:20 -08:00
settings.py subtle changes to settings files 2008-01-05 17:08:07 -08:00
urls.py Removed feeds from devsite 2007-12-30 10:14:26 -08: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. Fetch adn Extract test database
   For simple testing, sqlite is a good option. We have provided an 
   example test database.
   wget http://dev.archlinux.org/~eliott/archweb_sqlite.db.gz -O - | zcat > archweb.db

 3. Copy local_settings.py.example to local_settings.py and modify
   Make sure to uncomment the sqlite section.

 4. Use the following commands to start a service instance
   export PYTHONPATH=`pwd`:${PYTHONPATH} 
   export DJANGO_SETTINGS_MODULE=archweb_dev.settings 
   python manage.py runserver