Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.32 KB

README.md

File metadata and controls

43 lines (33 loc) · 1.32 KB

Python North West Website

                 \\\\
      ,-.   ,-.  \\\\
    .'   `.' O `. \\\
  ,'       `.    `.`\
  :    `.    `    ; \
   `.    `.     ,' .\
  ,:::._,:::._,:::. \
  ::O:::::::::::::; \
   `::::::;:::::;' .\
\\\\.`::;' `::;' .\\\
\\\\\\....\\....\\\\\

A website for Python North West, a usergroup for the Python programming language based in Manchester, UK. We meet on the third Thursday of every month, 7pm at Madlab.

Installation

To set up the project for development, it is recommended that you create a virtual environment in which to work.

The project requires:

  • Python 3.7
  • Django 2.1.2 and the other dependencies as listed in the requirements.txt file (pip install -r requirements.txt)

By default the project is configured for production, minus sensitive config which is not committed to version control. For your development environment you will need to:

  • Create a settings_secret.py file in the pynwproj directory (see settings_secret.py.template for an example)
  • Set the DJANGO_DEVELOPMENT environment variable, which will cause the settings in settings_dev.py to be imported and override those in the production settings file.