aboutsummaryrefslogtreecommitdiffstats
path: root/web/settings.py
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2014-09-07 18:21:37 -0400
committerGuillaume Horel <guillaume.horel@gmail.com>2014-09-07 18:24:08 -0400
commit0e8b0c88a4d3009cbbea695f606e49faef27f373 (patch)
tree85a14a7aef3ee36e73544382c6fdec8aa6bd375c /web/settings.py
parent74604d7b8ae98b125f1c800da753f8ab67474eb5 (diff)
downloadocr-layer-curation-0e8b0c88a4d3009cbbea695f606e49faef27f373.tar.gz
Reorganize the code
hope I did it right. We have two packages now, one for the server and one for the actual library.
Diffstat (limited to 'web/settings.py')
-rw-r--r--web/settings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/settings.py b/web/settings.py
index 5a8c9aa..32693b8 100644
--- a/web/settings.py
+++ b/web/settings.py
@@ -1,9 +1,9 @@
settings = {
"debug": True,
- "template_path": "templates",
- "static_path": "static",
+ "template_path": "web/templates",
+ "static_path": "web/static",
"cookie_secret": "toto",
"login_url": "/login",
- #"book": "Bloy_-_Le_Sang_du_pauvre,_Stock,_1932.djvu"
- "book": "Villiers_de_L'Isle-Adam_-_Tribulat_Bonhomet,_1908.djvu"
+ "book": "Bloy_-_Le_Sang_du_pauvre,_Stock,_1932.djvu"
+ #"book": "Villiers_de_L'Isle-Adam_-_Tribulat_Bonhomet,_1908.djvu"
}