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` version := `cat VERSION`
push: build push: build
scp ./build/libs/slackmemes-{{version}}-all.jar anthonycicchetti.com:/home/slackbot/slackbot.jar scp ./build/libs/slackmemes-{{version}}-all.jar anthonycicchetti.com:/home/acicchetti/slackbot.jar
ssh anthonycicchetti.com "service slackbot restart"
build: build:
./gradlew shadowJar ./gradlew shadowJar

View file

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