aboutsummaryrefslogtreecommitdiff
path: root/dhall/types
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2023-09-30 10:36:37 -0400
committerGitHub <noreply@github.com>2023-09-30 10:36:37 -0400
commitac6a3df0d18cc73524c0096d954a57d24cad5669 (patch)
tree81474177d730440657f490ae29892d62392251ea /dhall/types
parentcbdea8ba3fca9a663778af71f8df5965aeb6c090 (diff)
downloadxesite-ac6a3df0d18cc73524c0096d954a57d24cad5669.tar.xz
xesite-ac6a3df0d18cc73524c0096d954a57d24cad5669.zip
Xesite V4 (#723)
* scripts/ditherify: fix quoting Signed-off-by: Xe Iaso <me@xeiaso.net> * clean up some old files Signed-off-by: Xe Iaso <me@xeiaso.net> * import site into lume Signed-off-by: Xe Iaso <me@xeiaso.net> * initial go code Signed-off-by: Xe Iaso <me@xeiaso.net> * move vods index to top level Signed-off-by: Xe Iaso <me@xeiaso.net> * remove the ads Signed-off-by: Xe Iaso <me@xeiaso.net> * internal/lume: metrics Signed-off-by: Xe Iaso <me@xeiaso.net> * delete old code Signed-off-by: Xe Iaso <me@xeiaso.net> * load config into memory Signed-off-by: Xe Iaso <me@xeiaso.net> * autogenerate data from dhall config Signed-off-by: Xe Iaso <me@xeiaso.net> * various cleanups, import clackset logic Signed-off-by: Xe Iaso <me@xeiaso.net> * Update signalboost.dhall (#722) Added myself, and also fixed someone’s typo * Add Connor Edwards to signal boost (#721) * add cache headers Signed-off-by: Xe Iaso <me@xeiaso.net> * move command to xesite folder Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: listen for GitHub webhook push events Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: 5 minute timeout for rebuilding the site Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: add rebuild metrics Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: update default variables Signed-off-by: Xe Iaso <me@xeiaso.net> * don't commit binaries oops lol Signed-off-by: Xe Iaso <me@xeiaso.net> * lume: make search have a light background Signed-off-by: Xe Iaso <me@xeiaso.net> * add a notfound page Signed-off-by: Xe Iaso <me@xeiaso.net> * fetch info from patreon API Signed-off-by: Xe Iaso <me@xeiaso.net> * create contact page Signed-off-by: Xe Iaso <me@xeiaso.net> * Toot embedding Signed-off-by: Xe Iaso <me@xeiaso.net> * attempt a docker image Signed-off-by: Xe Iaso <me@xeiaso.net> * lume: fix deno lock Signed-off-by: Xe Iaso <me@xeiaso.net> * add gokrazy post Signed-off-by: Xe Iaso <me@xeiaso.net> * cmd/xesite: go up before trying to connect to the saas proxy Signed-off-by: Xe Iaso <me@xeiaso.net> * blog: add Sine post/demo Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net> Co-authored-by: bri <284789+b-@users.noreply.github.com> Co-authored-by: Connor Edwards <38229097+cedws@users.noreply.github.com>
Diffstat (limited to 'dhall/types')
-rw-r--r--dhall/types/Config.dhall4
-rw-r--r--dhall/types/Resume.dhall2
2 files changed, 4 insertions, 2 deletions
diff --git a/dhall/types/Config.dhall b/dhall/types/Config.dhall
index eb9db9f..c522a8d 100644
--- a/dhall/types/Config.dhall
+++ b/dhall/types/Config.dhall
@@ -18,6 +18,8 @@ let PronounSet = ./PronounSet.dhall
let Prelude = ../Prelude.dhall
+let Resume = ./Resume.dhall
+
let defaultPort = env:PORT ? 3030
let defaultWebMentionEndpoint =
@@ -40,6 +42,7 @@ in { Type =
, pronouns : List PronounSet.Type
, characters : List Character.Type
, vods : List VOD.Type
+ , resume : Resume.Type
}
, default =
{ signalboost = [] : List Person.Type
@@ -57,5 +60,6 @@ in { Type =
, pronouns = [] : List PronounSet.Type
, characters = [] : List Character.Type
, vods = [] : List VOD.Type
+ , resume = Resume::{=}
}
}
diff --git a/dhall/types/Resume.dhall b/dhall/types/Resume.dhall
index 6331100..5b06aad 100644
--- a/dhall/types/Resume.dhall
+++ b/dhall/types/Resume.dhall
@@ -9,7 +9,6 @@ in { Type =
, tagline : Text
, location : Location.Type
, buzzwords : List Text
- , jobs : List Job.Type
, notablePublications : List Link.Type
}
, default =
@@ -21,7 +20,6 @@ in { Type =
, country = "CAN"
}
, buzzwords = [] : List Text
- , jobs = [] : List Job.Type
, notablePublications = [] : List Link.Type
}
}