Skip to content
This repository was archived by the owner on Apr 19, 2019. It is now read-only.

Building

William Ting edited this page Sep 25, 2013 · 3 revisions

Building the site locally is unnecessary unless you are in charge of deploying the site to production or want to work on the theme. Here are the steps:

  1. clone the repo

     git clone https://github.com/UTACM/utacm.org.git
     cd utacm.org
    
  2. install virtualenvwrapper

     pip install --user virtualenvwrapper
    

    Add the requisite hooks to your .bashrc by following these instructions.

  3. create a virtualenv for this project

     mkvirtualenv utacm
     workon utacm
    
  4. install the required Python modules

     pip install -r requirements.txt
    
  5. start development server

     make devserver
    

    You can now visit the site at http://localhost:8000.

  6. to stop the development server

     ./develop_server.sh stop
    

If you have any questions check the documentation or open up an issue. Templates are written using Jinja2.

Clone this wiki locally