Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

pyohio/pyohio-cfp-website

Repository files navigation

PyOhio Website

The website for PyOhio is a Django application with Symposion and Registrasion.

It is a fork of the North Bay Python website (thanks NBPy folks!)

Setup

Development

python 2.7.14 Django 1.11.9

  • Fork this repo
  • git clone [your fork url] pyohio-webiste
  • cd pyohio-website
  • Create and activate a virtualenv (using Pipenv or virtualenv)
  • pip install -r requirements/base.txt
  • python manage.py migrate
  • python manage.py loaddata fixtures/base/*
  • python manage.py createsuperuser
  • python manage.py collectstatic
  • Run the development server
    • python manage.py runserver
    • Or if you have heroku tools installed: heroku local web

Prod

Use pip install -r requirements.txt instead and do not install the development fixtures.

Reference Material