Merge branch 'patch-1' of anthonycicc/slackbot into master
This commit is contained in:
commit
4f37bc7aed
2 changed files with 2 additions and 3 deletions
3
justfile
3
justfile
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue