-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (28 loc) · 1.13 KB
/
build.sbt
File metadata and controls
28 lines (28 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
lazy val `microsite` = (project in file("."))
.settings(
moduleName := "microsite",
micrositeName := "Mittelalterfest 2021",
micrositeDescription := "Elgg, 13. - 15. August",
micrositeDocumentationLabelDescription := "Documentation",
micrositeAuthor := "Timo",
micrositeTwitterCreator := "@tworrentz",
micrositePushSiteWith := GitHub4s,
micrositeGithubToken := sys.env.get("GITHUB_TOKEN"),
micrositeGithubOwner := "timo-schmid",
micrositeGithubRepo := "mittelalterfest",
micrositeBaseUrl := "/mittelalterfest",
micrositeDocumentationUrl := "/mittelalterfest/pages",
micrositeDocumentationLabelDescription := "Programm",
micrositeHomepage := "https://timo-schmid.github.io/mittelalterfest/",
micrositeOrganizationHomepage := "https://twitter.com/tworrentz",
micrositeGithubLinks := false,
micrositeGitterChannel := false,
micrositeTheme := "light",
micrositePalette := Map(
"brand-primary" -> "#cd8b62",
"brand-secondary" -> "#8a8583",
"white-color" -> "#f7efd3"
),
micrositeFooterText := None
)
.enablePlugins(MicrositesPlugin)