summaryrefslogtreecommitdiff
path: root/backend/src
diff options
context:
space:
mode:
Diffstat (limited to 'backend/src')
-rw-r--r--backend/src/main/resources/application.properties14
1 files changed, 5 insertions, 9 deletions
diff --git a/backend/src/main/resources/application.properties b/backend/src/main/resources/application.properties
index 17c83826..8b197363 100644
--- a/backend/src/main/resources/application.properties
+++ b/backend/src/main/resources/application.properties
@@ -1,11 +1,7 @@
# mandatory configuration
-jsondoc.version=1.0
-jsondoc.basePath=http://localhost:8080
-jsondoc.packages[0]=org.luxons.sevenwonders
-#jsondoc.packages[1]=org.luxons.sevenwonders.doc
-#jsondoc.packages[2]=org.luxons.sevenwonders.controllers
-#jsondoc.packages[3]=org.luxons.sevenwonders.actions
-#jsondoc.packages[4]=org.luxons.sevenwonders.game
+livedoc.version=1.0
+livedoc.basePath=http://localhost:8080
+livedoc.packages[0]=org.luxons.sevenwonders
# optional configuration
-jsondoc.playgroundEnabled=true
-jsondoc.displayMethodAs=URI
+livedoc.playgroundEnabled=true
+livedoc.displayMethodAs=URI
bgstack15