4 echo "1. Copy local_settings.py.example to local_settings.py and modify."
5 echo " Make sure to uncomment the appropriate db section (either sqlite or mysql)."
7 echo " 2. Sync the database to create it."
8 echo " $ python manage.py syncdb"
10 echo " 3. Load the fixtures to prepopulate some data."
11 echo " $ python manage.py loaddata arches.json repos.json"
13 echo " 4. Use the following commands to start a service instance"
14 echo " $ python manage.py runserver"
16 echo " 5. To optionally populate the database with real data:"
17 echo " $ wget ftp://ftp.archlinux.org/core/os/i686/core.db.tar.gz"
18 echo " $ scripts/reporead.py i686 ./core.db.tar.gz"
20 echo " (alter architecture and repo to get x86_64 and extra packages if needed)"