forked from blcham/record-manager
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#75] Merge config.properties and application.properties to applicati…
…on.yml
- Loading branch information
Showing
10 changed files
with
78 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
server: | ||
servlet: | ||
context-path: /record-manager | ||
|
||
# Driver to manage triple stores | ||
driver: cz.cvut.kbss.ontodriver.rdf4j.Rdf4jDataSource | ||
|
||
# URL of repository that holds main data of the application | ||
repositoryUrl: http://localhost:7200/repositories/record-manager-app | ||
|
||
# URL of repository where output and configuration of form-generator should be held | ||
formGenRepositoryUrl: http://localhost:7200/repositories/record-manager-formgen | ||
|
||
# REST endpoint of form generator service | ||
formGenServiceUrl: "http://localhost:8080/s-pipes/service?_pId=transform&sgovRepositoryUrl=https%3A%2F%2Fgraphdb.onto.fel.cvut.cz%2Frepositories%2Fkodi-slovnik-gov-cz" | ||
|
||
# Option to pass sameSite attribute for set-cookie headers. Possible values are None,Lax,Strict. | ||
# In case of None value also attribute "Secure;" is added. | ||
security: | ||
sameSite: "" | ||
|
||
# Provider of application security | ||
provider: internal | ||
|
||
# Url of the website for password reset emails (must have "/" at the end) | ||
appContext: http://localhost:3000/record-manager | ||
|
||
# SMTP configuration | ||
smtp: | ||
host: smtp.gmail.com | ||
port: 587 | ||
user: [email protected] | ||
password: AdminOrganization123 | ||
|
||
# Email settings | ||
email: | ||
displayName: Record Manager | ||
from: "" | ||
replyTo: "" | ||
cc: "" | ||
bcc: "" | ||
|
||
# Password Reset email configuration | ||
passwordResetSubject: Password Reset | ||
passwordResetContent: "<div><p>Dear user {{username}}, </p><p>please set your new password here: {{link}} </p><p>Best regards, <br>StudyManager</p></div>" | ||
|
||
# User Invite email configuration | ||
invitationSubject: Welcome to study | ||
invitationContent: "<div><p>Dear {{name}}, </p><p>you have been invited to a study running at {{appContext}}. </p><p>Your username is: {{username}}. </p>\ | ||
<p>Please set your password here: {{link}} </p><p>Best regards, <br>StudyManager</p></div>" | ||
|
||
# Password Change email configuration | ||
passwordChangeSubject: Password Change | ||
passwordChangeContent: "<div><p>Dear user {{username}}, </p><p>your password has been changed. </p><p>Best regards, <br>RecordManager</p></div>" | ||
|
||
# Profile Update email configuration | ||
profileUpdateSubject: Profile updated by a study coordinator | ||
profileUpdateContent: "<div><p>Dear user {{username}}, </p><p>your profile at {{appContext}} has been updated by a study coordinator. </p><p>Best regards, <br>RecordManager</p></div>" | ||
|
||
# Claim containing user roles in the OIDC access token | ||
oidc: | ||
roleClaim: realm_access.roles | ||
|
||
# Configures allowed origins for CORS | ||
cors: | ||
allowedOrigins: "" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
test: | ||
repositoryUrl: study-test-repository | ||
driver: cz.cvut.kbss.ontodriver.rdf4j.Rdf4jDataSource | ||
formGenRepositoryUrl: test-formGen-repository | ||
|
||
repositoryUrl: study-test-repository | ||
|
||
formGenRepositoryUrl: test-formGen-repository | ||
|
||
formGenServiceUrl: http://localhost:8081/formGenerator |
This file was deleted.
Oops, something went wrong.