Hi,

I uploaded a Pyramid application template with user account management
to PyPI.  Installation and usage instructions are at the end of this
email.  The code is at 
https://github.com/invisibleroads/invisibleroads_templates

Thank you to Chris McDonough, Mike Bayer, Mike Orr, Ben Bangert and
the other developers of Pyramid, Pylons and Python.

I will add templates for geospatial mapping using OpenLayers and
Polymaps after I finish some work for a client.

Thanks,
RHH



Installation
------------
::

    virtualenv --no-site-packages pyramid-env
    cd pyramid-env
    source bin/activate
    pip install pyramid ipython ipdb nose coverage
invisibleroads_templates


Usage
-----
::

    # Activate isolated environment
    source bin/activate

    # List available templates
    paster create --list-templates
    # Create an application
    paster create -t ir_core xxx

    # Change to application's folder
    cd xxx
    # Install dependencies
    python setup.py develop

    # Run tests with coverage
    nosetests
    # Show URL routes
    paster proutes development.ini auth
    # Run shell
    paster pshell development.ini auth

    # Edit sensitive information
    vim .development.ini
    # Start development server
    paster serve --reload development.ini

    # Edit sensitive information
    vim .production.ini
    # Start production server
    paster serve --daemon production.ini

    # Edit and install crontab.crt
    vim deployment/crontab.crt
    crontab deployment/crontab.crt

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to