Fix fixture dependency problem in README data loading

django.core.serializers.base.DeserializationError: Problem installing fixture '.../devel/fixtures/staff_groups.json': Group matching query does not exist.

Alphabetical ordering bit us here. Stop cheating in the README and spell
out the fixtures in an order that should work.

Noticed-by: Johannes Löthberg <johannes@kyriasis.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2014-12-02 15:41:08 -06:00
parent 0fc409ef08
commit 566088bb11

View File

@ -32,15 +32,15 @@ packages, you will probably want the following:
1. Run `virtualenv2`.
$ cd /path/to/archweb && virtualenv2 ./env/
cd /path/to/archweb && virtualenv2 ./env/
2. Activate the virtualenv.
$ source ./env/bin/activate
source ./env/bin/activate
2. Install dependencies through `pip`.
(archweb-env) $ pip install -r requirements.txt
pip install -r requirements.txt
3. Copy `local_settings.py.example` to `local_settings.py` and modify.
Make sure to uncomment the appropriate database section (either sqlite or
@ -48,26 +48,29 @@ packages, you will probably want the following:
4. Sync the database to create it.
(archweb-env) $ ./manage.py syncdb
./manage.py syncdb
5. Migrate changes.
(archweb-env) $ ./manage.py migrate
./manage.py migrate
6. Load the fixtures to prepopulate some data. If you don't want some of the
provided data, adjust the file glob accordingly.
(archweb-env) $ ./manage.py loaddata */fixtures/*.json
./manage.py loaddata main/fixtures/*.json
./manage.py loaddata devel/fixtures/*.json
./manage.py loaddata mirrors/fixtures/*.json
./manage.py loaddata releng/fixtures/*.json
7. Use the following commands to start a service instance
(archweb-env) $ ./manage.py runserver
./manage.py runserver
8. To optionally populate the database with real data:
(archweb-env) $ wget ftp://ftp.archlinux.org/core/os/i686/core.db.tar.gz
(archweb-env) $ ./manage.py reporead i686 core.db.tar.gz
(archweb-env) $ ./manage.py syncisos
wget ftp://ftp.archlinux.org/core/os/i686/core.db.tar.gz
./manage.py reporead i686 core.db.tar.gz
./manage.py syncisos
Alter architecture and repo to get x86\_64 and packages from other repos if
needed.