StoryTeller/src/main/resources/application.properties
Konrad Neitzel fa9d2d3136 Enhance StoryService and UI for story creation
- Updated StoryService to auto-generate the opening story step from the scenario description when starting a new story.
- Modified title handling to default to the scenario title if no title is provided.
- Refactored character management to improve consistency in character replacement.
- Updated ScenariosPage to handle story starting with a button instead of a link, providing better user feedback during the process.
- Cleaned up StoriesPage by removing unused form for starting stories and improving user navigation prompts.
- Adjusted OpenAPI specifications to reflect changes in request payloads.
2026-02-25 06:13:14 +01:00

25 lines
865 B
INI

quarkus.http.port=8080
quarkus.http.cors.enabled=true
quarkus.rest.path=/api
quarkus.liquibase.migrate-at-start=true
quarkus.liquibase.change-log=db/migration/db.changelog-master.yaml
quarkus.datasource.db-kind=h2
quarkus.datasource.jdbc.url=jdbc:h2:mem:storyteller;DB_CLOSE_DELAY=-1
quarkus.datasource.username=sa
quarkus.datasource.password=
mp.jwt.verify.publickey.location=publicKey.pem
mp.jwt.verify.issuer=storyteller
smallrye.jwt.sign.key.location=privateKey.pem
smallrye.jwt.new-token.lifespan=86400
smallrye.jwt.new-token.issuer=storyteller
quarkus.http.auth.permission.public.paths=/api/auth/*
quarkus.http.auth.permission.public.policy=permit
quarkus.http.auth.permission.protected.paths=/api/*
quarkus.http.auth.permission.protected.policy=authenticated
quarkus.http.auth.permission.static.paths=/*
quarkus.http.auth.permission.static.policy=permit