- Fork it.
- Clone it
create a virtualenv
$ virtualenv env # Create virtual environment
$ source env/bin/activate # Change default python to virtual one
(env)$ git clone https://github.com/tasdikrahman/spammy.git
(env)$ cd spammy
(env)$ pip install -r requirements.txt # Install requirements for 'spammy' in virtual environment
Or, if virtualenv
is not installed on your system:
$ wget https://raw.github.com/pypa/virtualenv/master/virtualenv.py
$ python virtualenv.py env # Create virtual environment
$ source env/bin/activate # Change default python to virtual one
(env)$ git clone https://github.com/tasdikrahman/spammy.git
(env)$ cd spammy
(env)$ pip install -r requirements.txt # Install requirements for 'spammy' in virtual environment
- Create your feature branch (
$ git checkout -b my-new-awesome-feature
) - Commit your changes (
$ git commit -am 'Added <xyz> feature'
) - Run tests
nosetests
is being used as the testing suite. To run the tests
(env) $ nosetests
Conform to PEP8 and if everything is running fine, integrate your feature
- Push to the branch (
$ git push origin my-new-awesome-feature
) - Create new Pull Request
Hack away!