Miscellaneous fixes for webjars not resolving

This commit is contained in:
Anthony Cicchetti 2019-08-29 20:17:10 -04:00
parent ac183adc2b
commit 36b55c1329
2 changed files with 2 additions and 3 deletions

View file

@ -1,8 +1,7 @@
version := `cat VERSION`
push: build
scp ./build/libs/slackmemes-{{version}}-all.jar anthonycicchetti.com:/home/slackbot/slackbot.jar
ssh anthonycicchetti.com "service slackbot restart"
scp ./build/libs/slackmemes-{{version}}-all.jar anthonycicchetti.com:/home/acicchetti/slackbot.jar
build:
./gradlew shadowJar

View file

@ -21,6 +21,7 @@ fun main() {
val app = Javalin.create { config ->
config.registerPlugin(OpenApiPlugin(createOpenApiOptions()))
config.enableWebjars()
config.enableCorsForAllOrigins()
config.requestLogger {ctx, ms ->
logger.info("Took ${ms.roundToInt()} to process ${ctx.req.requestURL}")
@ -116,7 +117,6 @@ private fun createOpenApiOptions(): OpenApiOptions {
OpenAPI()
.info(Info().version("0.1.2").description("Slackbot Open API documentation"))
.addServersItem(Server().url("https://acicchetti.dev/"))
.addServersItem(Server().url("http://localhost:7000/"))
}
return OpenApiOptions(o)