Notejam application implemented using Pyramid framework.
Pyramid version: 1.5
Clone the repo:
$ git clone [email protected]:komarserjio/notejam.git YOUR_PROJECT_DIR/
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
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 functional and unit tests:
$ cd YOUR_PROJECT_DIR/pyramid/
$ python setup.py test
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.