rb@82: Installation rb@82: ------------ rb@82: rb@82: First you have to clone this repository and all its submodules:: rb@232: cd eskp-app rb@82: rb@82: Next create a virtualenv and install all the requirments into it. In this rb@82: example we are using virtualenvwrapper to manage the virtualenv:: rb@82: rb@232: mkvirtualenv eskp-env rb@82: rb@82: This repository provides requirements and configurations. rb@82: rb@82: For local development, install the requirements specified in rb@82: requirements:: rb@82: rb@82: pip install -r requirements.txt rb@82: rb@232: Now that this is complete, you can run eskp in that environment:: rb@82: rb@232: python ./eskp.py rb@82: peter@192: Testing and developing is done with:: peter@192: peter@192: pip install -r requirements-dev.txt peter@192: peter@192: Now you have additional packages for development and testing: peter@192: peter@192: - pep8 peter@192: - py.test peter@192: - selenium peter@192: rb@82: rb@82: rb@82: