Installation

Development

  1. Install requirements:

    $ make develop
  2. Run development web server:

    $ make runserver
  3. Test in web browser:

    http://localhost:9000

Vagrant

  1. Start vagrant and provision:

    $ make vagrant
  2. Test in web browser:

    http://<vagrant_ip>

Release

  1. Install requirements:

    $ pip install climagraph
  2. Generate default conf:

    $ climagraph init
  3. Tweak conf file in ~/.climagraph/config.conf

  4. Init database, assets and run gunicorn server:

    $ climagraph syncdb
    $ climagraph collectstatic
    $ climagraph start