summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-01-05 16:01:48 -0800
committereliott <eliott@cactuswax.net>2008-01-05 16:18:20 -0800
commitd716d6481075f85766354f59f15f8895f66a60cd (patch)
tree70e11ecb63de1d98e86c9d8727327d1ee1c799b0
parent424d2a77302c4436148a560d429cc23e9d387e76 (diff)
downloadarchweb-d716d6481075f85766354f59f15f8895f66a60cd.tar.gz
archweb-d716d6481075f85766354f59f15f8895f66a60cd.zip
Updated docs
-rw-r--r--README14
-rw-r--r--local_settings.py.example2
2 files changed, 7 insertions, 9 deletions
diff --git a/README b/README
index 5f19c2cf..1eeab4df 100644
--- a/README
+++ b/README
@@ -14,16 +14,14 @@ For a simple testing installation:
1. Install dependencies.
pacman -S django python-pysqlite sqlite3
- or
- pacman -S django mysql mysql-python
- 2. Configure database
- For simple testing, sqlite is a good option.
- If using mysql, create a database, and a user with permission to
- that database.
+ 2. Extract test database
+ For simple testing, sqlite is a good option. We have provided an
+ example test database.
+ gzip -cd ./testing/database/archweb_sqlite.db.gz > archweb.db
- 3. Populate database with test data
- Run ./scripts/testing/load_data.bash
+ 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}
diff --git a/local_settings.py.example b/local_settings.py.example
index c6f31603..031e3b6a 100644
--- a/local_settings.py.example
+++ b/local_settings.py.example
@@ -10,7 +10,7 @@ ADMINS = (
## Sqlite Database settings
#DATABASE_ENGINE = 'sqlite3'
-#DATABASE_NAME = 'archlinux.db'
+#DATABASE_NAME = 'archweb.db'
## MySQL Database settings
#DATABASE_ENGINE = 'mysql'