feat(devcontainer): add Docker and devcontainer configuration for NowChess workspace
This commit is contained in:
@@ -1,16 +1,21 @@
|
||||
quarkus:
|
||||
application.name: nowchess-store
|
||||
application:
|
||||
name: nowchess-store
|
||||
http.port: 8085
|
||||
config.yaml.enabled: true
|
||||
config:
|
||||
yaml:
|
||||
enabled: true
|
||||
redis:
|
||||
hosts: redis://${REDIS_HOST:localhost}:${REDIS_PORT:6379}
|
||||
datasource:
|
||||
db-kind: postgresql
|
||||
username: ${DB_USER:nowchess}
|
||||
password: ${DB_PASSWORD:nowchess}
|
||||
jdbc.url: ${DB_URL:jdbc:postgresql://localhost:5432/nowchess}
|
||||
jdbc:
|
||||
url: ${DB_URL:jdbc:postgresql://localhost:5432/nowchess}
|
||||
hibernate-orm:
|
||||
database.generation: update
|
||||
database:
|
||||
generation: update
|
||||
|
||||
nowchess:
|
||||
redis:
|
||||
@@ -24,9 +29,11 @@ nowchess:
|
||||
db-kind: h2
|
||||
username: sa
|
||||
password: ""
|
||||
jdbc.url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
||||
jdbc:
|
||||
url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
||||
hibernate-orm:
|
||||
database.generation: drop-and-create
|
||||
database:
|
||||
generation: drop-and-create
|
||||
nowchess:
|
||||
redis:
|
||||
host: localhost
|
||||
|
||||
@@ -5,12 +5,6 @@ quarkus:
|
||||
name: nowchess-ws
|
||||
redis:
|
||||
hosts: redis://${REDIS_HOST:localhost}:${REDIS_PORT:6379}
|
||||
swagger-ui:
|
||||
always-include: true
|
||||
path: /swagger-ui
|
||||
grpc:
|
||||
server:
|
||||
use-separate-server: false
|
||||
|
||||
nowchess:
|
||||
redis:
|
||||
|
||||
Reference in New Issue
Block a user