diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-03-02 18:07:17 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-03-02 18:07:17 -0800 |
commit | eb9ffbbd863cc11b1a6da59b9b4bf228313426ac (patch) | |
tree | e060cc89fcac69468f1a2340987aeda6354c4ded | |
parent | 92241abe22d0976d115fbd4caacbf5121d5d5c04 (diff) | |
download | tamarind-eb9ffbbd863cc11b1a6da59b9b4bf228313426ac.tar.gz tamarind-eb9ffbbd863cc11b1a6da59b9b4bf228313426ac.tar.bz2 tamarind-eb9ffbbd863cc11b1a6da59b9b4bf228313426ac.zip |
Separating configuration stuff to config.txr.
-rw-r--r-- | config.txr | 3 | ||||
-rwxr-xr-x | main.txr | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/config.txr b/config.txr new file mode 100644 index 0000000..57cd00f --- /dev/null +++ b/config.txr @@ -0,0 +1,3 @@ +@(bind debug-enable t) +@(bind aliases-file "/etc/tamarind/aliases") +@(bind csslink "") @@ -1,6 +1,6 @@ #!/usr/local/bin/txr @(next :args) -@(bind debug-enable t) +@(load "config") @(load "logging") @(load "headers") @(load "auth") @@ -13,7 +13,6 @@ @(load "alias-list-form") @(load "edit-memo-form") @(load "startup") -@(bind csslink "") @(do (randomize)) @(startup domain) @(next :env) |