-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SMA-101: added env variables for different environments
- Loading branch information
1 parent
a2ce89d
commit 4aac6c0
Showing
5 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
backend/sportsmatch/src/main/resources/application-prod.properties
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,22 @@ | ||
spring.datasource.url=jdbc:postgresql://quirky-bugbear-7185.7tc.aws-eu-central-1.cockroachlabs.cloud:26257/sportsmingle?sslmode=verify-full | ||
spring.datasource.username=matt | ||
spring.datasource.password={ask for it} | ||
spring.jpa.hibernate.ddl-auto=update | ||
spring.datasource.driver-class-name=org.postgresql.Driver | ||
spring.jpa.show-sql=true | ||
spring.jpa.properties.hibernate.format_sql=true | ||
spring.jpa.properties.hibernate.use_sql_comments=true | ||
spring.jpa.properties.hibernate.generate_statistics=true | ||
spring.h2.console.enabled=true | ||
spring.mvc.hiddenmethod.filter.enabled=true | ||
|
||
spring.jpa.defer-datasource-initialization=true | ||
spring.sql.init.mode=always | ||
|
||
app.sportsmingle.initialization.database-init=true | ||
app.sportsmingle.jwt.secret=j20qeDeHCI6vGstychuoW2mknL8kmmQW66UCTDSz4jNfSNdd1eUpqEsUfVkOq9tO | ||
app.sportsmingle.frontend.url=sportsmingle.app | ||
|
||
app.sportsmingle.num-game-threshold=5,15,25 | ||
app.sportsmingle.k-factors=25.0,15.0,10.0 | ||
app.sportsmingle.k-factor-default=5.0 |
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 @@ | ||
VITE_BACKEND_URL=http://localhost:8080 |
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 @@ | ||
VITE_BACKEND_URL= |
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
/// <reference types="vite/client" /> | ||
|
||
interface ImportMetaEnv { | ||
readonly VITE_BACKEND_URL: string | ||
} | ||
|
||
interface ImportMeta { | ||
readonly env: ImportMetaEnv | ||
} |