9 - mysql-python or python-pysqlite
13 For a simple testing installation:
15 1. Install dependencies.
16 pacman -S django python-pysqlite sqlite3
18 2. Extract test database
19 For simple testing, sqlite is a good option. We have provided an
20 example test database.
21 gzip -cd ./testing/database/archweb_sqlite.db.gz > archweb.db
23 3. Copy local_settings.py.example to local_settings.py and modify
24 Make sure to uncomment the sqlite section.
26 4. Use the following commands to start a service instance
27 export PYTHONPATH=`pwd`:${PYTHONPATH}
28 export DJANGO_SETTINGS_MODULE=archweb_dev.settings
29 python manage.py runserver