Installing Infogami
Requirements
- Python >= 2.4
- postgres database
-
psycopg2 - python postgres driver:
easy_install psycopg2 -
web.py >= 0.31 -
easy_install web.py
Get code
Infogami source code is available from git repository on github.
$ git clone git://github.com/infogami/infogami.git
Install
Copy sample_run.py to run.py and change the db settings.
$ DB=infogami
$ createdb $DB
$ python run.py --schema | psql $DB
$ python run.py --createsite
$ python run.py install
Run
To run Infogami on default port:
$ python run.py
http://0.0.0.0:8080
...
To run Infogami on a specified port:
$ python run.py startserver 4567
http://0.0.0.0:4567
...