\\\\
,-. ,-. \\\\
.' `.' 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.
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 thepynwproj
directory (seesettings_secret.py.template
for an example) - Set the
DJANGO_DEVELOPMENT
environment variable, which will cause the settings insettings_dev.py
to be imported and override those in the production settings file.