diff --git a/README b/README index fd493b68..e517ffe6 100644 --- a/README +++ b/README @@ -44,19 +44,21 @@ will probably want the following: 4. Sync the database to create it. - $ python manage.py syncdb + $ ./manage.py syncdb 5. Migrate changes. - $ python manage.py migrate + $ ./manage.py migrate 6. Load the fixtures to prepopulate some data. - $ python manage.py loaddata main/fixtures/arches.json main/fixtures/repos.json + $ ./manage.py loaddata main/fixtures/arches.json + # ./manage.py loaddata main/fixtures/repos.json + # ./manage.py loaddata mirrors/fixtures/mirrorprotocols.json 7. Use the following commands to start a service instance - $ python manage.py runserver + $ ./manage.py runserver 8. To optionally populate the database with real data: diff --git a/main/fixtures/mirrorprotocols.json b/mirrors/fixtures/mirrorprotocols.json similarity index 54% rename from main/fixtures/mirrorprotocols.json rename to mirrors/fixtures/mirrorprotocols.json index 9e8932a8..35614b3a 100644 --- a/main/fixtures/mirrorprotocols.json +++ b/mirrors/fixtures/mirrorprotocols.json @@ -1,23 +1,26 @@ [ - { - "pk": 2, - "model": "main.mirrorprotocol", - "fields": { - "protocol": "ftp" - } - }, { "pk": 1, - "model": "main.mirrorprotocol", + "model": "mirrors.mirrorprotocol", "fields": { + "is_download": true, "protocol": "http" } }, { - "pk": 3, - "model": "main.mirrorprotocol", + "pk": 2, + "model": "mirrors.mirrorprotocol", "fields": { + "is_download": true, + "protocol": "ftp" + } + }, + { + "pk": 3, + "model": "mirrors.mirrorprotocol", + "fields": { + "is_download": false, "protocol": "rsync" } } -] +] \ No newline at end of file