Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 642 Bytes

README.md

File metadata and controls

32 lines (17 loc) · 642 Bytes

The Cocode website is powered by Pelican, the Python static site generator.

Setup

This assumes you have the python virtualenv package. pip install virtualenv.

  1. Create a virtual environment:

     $ virtualenv venv
    
  2. Activate the virtual environment:

     $ source venv/bin/activate
    

    Or in the fish shell:

     $ source venv/bin/activate.fish
    
  3. Install the dependencies:

     $ pip install -r requirements.txt
    

Development

To start a local server, you can run the following in your shell:

$ invoke develop