update env variable
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -19,6 +19,7 @@ target/
|
|||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
src/main/resources/application-local.properties
|
src/main/resources/application-local.properties
|
||||||
|
update_env_var.sh
|
||||||
|
|
||||||
### NetBeans ###
|
### NetBeans ###
|
||||||
/nbproject/private/
|
/nbproject/private/
|
||||||
|
|||||||
@@ -1,2 +1,20 @@
|
|||||||
spring.application.name=SafeQR-app
|
spring.application.name=SafeQR-app
|
||||||
spring.profiles.active=local
|
#spring.profiles.active=local
|
||||||
|
http.port=${HTTP_PORT}
|
||||||
|
server.port=${SERVER_PORT}
|
||||||
|
server.ssl.enabled=true
|
||||||
|
server.ssl.key-store-type=${SERVER_SSL_KEY_STORE_TYPE}
|
||||||
|
server.ssl.key-store=${SERVER_SSL_KEY_STORE_LOCATION}
|
||||||
|
server.ssl.key-store-password=${SERVER_SSL_KEY_STORE_PASSWORD}
|
||||||
|
server.ssl.key-alias=${SERVER_SSL_KEY_ALIAS}
|
||||||
|
trust.store=${SERVER_SSL_TRUST_STORE_LOCATION}
|
||||||
|
trust.store.password=${SERVER_SSL_TRUST_STORE_PASSWORD}
|
||||||
|
|
||||||
|
spring.datasource.url=${SERVER_DB_URL}
|
||||||
|
spring.datasource.username=${SERVER_DB_USERNAME}
|
||||||
|
spring.datasource.password=${SERVER_DB_PASSWORD}
|
||||||
|
spring.datasource.driver-class-name=${SERVER_DB_DRIVER_CLASS_NAME}
|
||||||
|
spring.jpa.database-platform=${SERVER_DB_DIALECT}
|
||||||
|
spring.jpa.hibernate.ddl-auto=update
|
||||||
|
spring.jpa.show-sql=true
|
||||||
|
spring.jpa.properties.hibernate.format_sql=true
|
||||||
|
|||||||
Reference in New Issue
Block a user