-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from MTES-MCT/metabase-crud
Dev - introduced docker-compose for local env
- Loading branch information
Showing
82 changed files
with
1,168 additions
and
2,019 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 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 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,40 +1,54 @@ | ||
server.port=0080 | ||
# Set root logger to DEBUG level | ||
# logging.level.root=DEBUG | ||
server.servlet.request.logging.enabled=true | ||
server.servlet.request.logging.level=INFO | ||
logging.level.org.springframework.web=DEBUG | ||
logging.level.org.springframework.security=DEBUG | ||
spring.data.rest.base-path=/api | ||
security.key=somerandomkeywhichislongenoughtoalignwiththejwtspecification | ||
################ | ||
################ | ||
# Spring | ||
spring.mvc.static-path-pattern=/** | ||
spring.web.resources.static-locations=file:${STATIC_FILES_PATH} | ||
# JPA | ||
spring.jpa.hibernate.ddl-auto=validate | ||
spring.jpa.show-sql=true | ||
#spring.jpa.properties.hibernate.format_sql=true | ||
# spring.datasource.url=${env.db.url} | ||
spring.datasource.url=jdbc:postgresql://localhost:5432/rapportnavdb?user=postgres&password=postgres | ||
spring.datasource.url=jdbc:postgresql://db:5432/rapportnavdb?user=postgres&password=postgres | ||
spring.datasource.driver-class-name=org.postgresql.Driver | ||
# Rest API | ||
spring.data.rest.base-path=/api | ||
# database migrations | ||
spring.flyway.enabled=true | ||
spring.flyway.baseline-on-migrate=true | ||
spring.flyway.locations=classpath:/db/migration,classpath:/db/testdata | ||
spring.flyway.out-of-order=true | ||
# hot reload: | ||
#spring.devtools.livereload.enabled=${spring.devtools.livereload.enabled} | ||
################ | ||
################ | ||
# Server | ||
server.port=0080 | ||
server.servlet.request.logging.enabled=true | ||
server.servlet.request.logging.level=INFO | ||
################ | ||
################ | ||
# GraphQL API | ||
graphql.cors-enabled=true | ||
graphql.cors.allowed-origins=* | ||
graphql.cors.allowed-methods=GET, HEAD, POST | ||
spring.graphql.graphiql.enabled=true | ||
spring.graphql.graphiql.path=/graphiql | ||
# Sentry log & perf tracking | ||
sentry.enabled=true | ||
sentry.dsn=https://[email protected]/121 | ||
sentry.proxy.host=172.27.229.197 | ||
sentry.proxy.port=8090 | ||
#sentry.exception-resolver-order=-2147483647 | ||
sentry.traces-sample-rate=1.0 | ||
sentry.environment=production | ||
################ | ||
################ | ||
# Logging | ||
logging.level.org.springframework.web=DEBUG | ||
logging.level.org.springframework.security=DEBUG | ||
################ | ||
################ | ||
# Security | ||
security.key=somerandomkeywhichislongenoughtoalignwiththejwtspecification | ||
################ | ||
################ | ||
# Sentry | ||
rapportnav.sentry.enabled=${sentry.enabled} | ||
rapportnav.sentry.dsn=${sentry.dsn} | ||
rapportnav.sentry.proxy.host=${host.proxy.host} | ||
rapportnav.sentry.proxy.port=${host.proxy.port} | ||
rapportnav.sentry.traces-sample-rate=${sentry.traces-sample-rate} | ||
rapportnav.sentry.environment=${sentry.environment} | ||
sentry.use-git-commit-id-as-release=true | ||
# Set traces_sample_rate to 1.0 to capture 100% | ||
# of transactions for performance monitoring. | ||
# We recommend adjusting this value in production. | ||
|
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
backend/target/classes/db/migration/V0.10__alter_mission_action_control_lat_lon.sql
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
backend/target/classes/db/migration/V0.11__alter_controls_add_delete_at.sql
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
backend/target/classes/db/migration/V0.12__alter_status_add_delete_at.sql
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
backend/target/classes/db/migration/V0.13__delete_crew_and_crew_role.sql
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.