Skip to content

Latest commit

 

History

History

pyramid

Notejam: Pyramid

Notejam application implemented using Pyramid framework.

Pyramid version: 1.5

Installation and launching

Clone

Clone the repo:

$ git clone git@github.com:komarserjio/notejam.git YOUR_PROJECT_DIR/

Install

Use virtualenv or virtualenvwrapper for environment management.

Install dependencies:

$ cd YOUR_PROJECT_DIR/pyramid/
$ python setup.py develop

Create database schema:

$ cd YOUR_PROJECT_DIR/pyramid/
$ initialize_notejam_db development.ini

Launch

Start pyramid web server:

$ cd YOUR_PROJECT_DIR/pyramid/
$ pserve development.ini --reload

Go to http://127.0.0.1:6543/ in your browser

Run tests

Run functional and unit tests:

$ cd YOUR_PROJECT_DIR/pyramid/
$ python setup.py test

Contribution

Do you have python/pyramid experience? Help the app to follow python and pyramid best practices.

Please send your pull requests in the master branch. Always prepend your commits with framework name:

Pyramid: Implemented sign in functionality

Read contribution guide for details.