Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.38 KB

File metadata and controls

31 lines (24 loc) · 1.38 KB

PyConKE 2017 Website Repo

INTRO

This repository contains the sources used to build the PyConKE 2017 Website. We use pelican to build the contents of this repository into the site you see at http://pycon.or.ke

PREREQUIESITES

To contribute, we recommend you install:-

CLONING

  1. Click here to fork this Repo.
  2. Clone your fork and cd into it.
  3. Create a virtualenv for your repo:- mkvirtualenv -a . pyconke17web.
  4. Install the remaining dependencies:- pip install -r requirements.txt.
  5. Initialize & update submodule dependencies (plugins, theme ..etc): git submodule update --init --recursive.
  6. Then create a branch, naming it along the lines as your topic of contribution.

EDITING

Start the development server:- ./develop_server.sh start. Open http://127.0.0.1:8000 to view. Any changes you make will automatically be reflected there.

  1. Add, commit and push your changes.
  2. Send us a pull request against master.

We'll review your contribution and maybe ask you to make further changes before we merge.