updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / archweb-git / archweb-git.install
blob35761422b055f92bd965059a66be620d2e1f5e65
2 post_install() {
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)."
6 echo ""
7 echo " 2. Sync the database to create it."
8 echo "    $ python manage.py syncdb"
9 echo ""
10 echo " 3. Load the fixtures to prepopulate some data."
11 echo "    $ python manage.py loaddata arches.json repos.json"
12 echo ""
13 echo " 4. Use the following commands to start a service instance"
14 echo "    $ python manage.py runserver"
15 echo ""
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"
19 echo ""
20 echo "    (alter architecture and repo to get x86_64 and extra packages if needed)"