Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 786 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 786 Bytes

PyTexas Docker

The pytexas.org website, dockerized.

Setup

  1. Install Docker
  2. Install docker-compose
  3. Clone the necessary repos:
    • git clone git@github.com:pytexas/PyTexasBackend.git
    • git clone git@github.com:pytexas/PyTexas2019.git
    • git clone git@github.com:pizzapanther/Django-Conference.git
  4. docker-compose up
  5. Visit http://localhost:8000

Weirdness

The dependencies for the backend are included in this repo as requirements.in and requirements.txt because pipenv is overkill for dependencies inside Docker containers.

To rebuild the requirements.txt file after modifying requirements.in:

$ pip install pip-tools
$ pip-compile requirements.in