diff options
author | Philip Sargent (laptop) <you@example.com> | 2023-05-02 14:27:55 +0300 |
---|---|---|
committer | Philip Sargent (laptop) <you@example.com> | 2023-05-02 14:27:55 +0300 |
commit | 8e982bd6bee63d89c286b7d393bfb2b8536e078d (patch) | |
tree | f854492bf6f6226bb58dbc2eae0e63ad57b7aee6 /_deploy/wsl/localsettingsWSL.py | |
parent | 783154d24a0033bbda15ebfa4e30744d02c27324 (diff) | |
download | troggle-8e982bd6bee63d89c286b7d393bfb2b8536e078d.tar.gz troggle-8e982bd6bee63d89c286b7d393bfb2b8536e078d.tar.bz2 troggle-8e982bd6bee63d89c286b7d393bfb2b8536e078d.zip |
Fixing new dev machine setup
Diffstat (limited to '_deploy/wsl/localsettingsWSL.py')
-rw-r--r-- | _deploy/wsl/localsettingsWSL.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/_deploy/wsl/localsettingsWSL.py b/_deploy/wsl/localsettingsWSL.py index 8308c6e..42a2a1c 100644 --- a/_deploy/wsl/localsettingsWSL.py +++ b/_deploy/wsl/localsettingsWSL.py @@ -52,11 +52,10 @@ TEMPLATE_PATH = TROGGLE_PATH / "templates" MEDIA_ROOT = TROGGLE_PATH / "media" JSLIB_ROOT = TROGGLE_PATH / "media" / "jslib" # used for CaveViewer JS utility -# FILES = Path('/mnt/d/expofiles/') EXPOFILES = REPOS_ROOT_PATH / "expofiles" SCANS_ROOT = EXPOFILES / "surveyscans" -PHOTOS_ROOT = EXPOFILES / "photos" +PHOTOS_ROOT = Path("/mnt/d/EXPO/PHOTOS") PHOTOS_YEAR = "2023" NOTABLECAVESHREFS = ["290", "291", "264", "258", "204", "359", "76", "107"] @@ -95,7 +94,7 @@ SURVEXPORT = "survexport" # for parsing .3d files and producing .pos files DBSQLITE = { "default": { "ENGINE": "django.db.backends.sqlite3", # 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - "NAME": "/home/philip/p11d5/troggle.sqlite", + "NAME": "/home/philip/p11d4/troggle.sqlite", # 'NAME' : ':memory:', "USER": "expo", # Not used with sqlite3. "PASSWORD": "sekrit", # Not used with sqlite3. |