diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-07-18 16:23:54 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-07-18 16:23:54 +0100 |
commit | edd5a3efd901df68243372f46087d96d4fbf7715 (patch) | |
tree | 037682c9ad9a85c2de8532c5623bf750c12dee5b /localsettingsWSL.py | |
parent | 90dfa516da857f300bd0ff483ebf7a412934bbcf (diff) | |
download | troggle-edd5a3efd901df68243372f46087d96d4fbf7715.tar.gz troggle-edd5a3efd901df68243372f46087d96d4fbf7715.tar.bz2 troggle-edd5a3efd901df68243372f46087d96d4fbf7715.zip |
Module documentation docstrings
Diffstat (limited to 'localsettingsWSL.py')
-rw-r--r-- | localsettingsWSL.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/localsettingsWSL.py b/localsettingsWSL.py index 01133ba..0034fdd 100644 --- a/localsettingsWSL.py +++ b/localsettingsWSL.py @@ -1,6 +1,18 @@ import sys import os import urllib.parse +"""Settings for a troggle installation which may vary among different +installations: for development or deployment, in a docker image or +python virtual environment (venv), on ubuntu, debian or in Windows +System for Linux (WSL), on the main server or in the potato hut, +using SQLite or mariaDB. + +It sets the directory locations for the major parts of the system so +that e.g. expofiles can be on a different filesystem. + +This file is included at the end of the main troggle/settings.py file so that +it overwrites defaults in that file. +""" # link 'localsettings.py' to localsettingsWSL.py for use on a Windows 10 machine running WSL1 print(" * importing troggle/localsettings.py") |