Miscellaneous fixes for webjars not resolving
This commit is contained in:
parent
ac183adc2b
commit
36b55c1329
2 changed files with 2 additions and 3 deletions
3
justfile
3
justfile
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue