Skip to content

Commit 0afa480

Browse files
committed
Merge branch 'main' into feat/print-service
2 parents 52c3e34 + b6f5e10 commit 0afa480

37 files changed

Lines changed: 730 additions & 173 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
},
1414

1515
"portsAttributes": {
16-
"8080": {
17-
"label": "stickerlandia"
18-
},
19-
"8081": {
20-
"label": "Traefik dash"
21-
},
22-
"8082": {
23-
"label": "Redpanda console"
24-
}
25-
},
16+
"8080": {
17+
"label": "stickerlandia"
18+
},
19+
"8081": {
20+
"label": "Traefik dash"
21+
},
22+
"8082": {
23+
"label": "Kafbat Console"
24+
}
25+
},
2626

2727
"postAttachCommand": "chmod +x .devcontainer/setup.sh && .devcontainer/setup.sh",
2828
}

.devcontainer/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ if [ -n "$CODESPACE_NAME" ]; then
3636
echo "Available services:"
3737
echo " - Main Application: ${BASE_URL}-8080.app.github.dev"
3838
echo " - Traefik Dashboard: ${BASE_URL}-8081.app.github.dev/dashboard/"
39-
echo " - Redpanda Console: ${BASE_URL}-8082.app.github.dev"
39+
echo " - Kafbat Console: ${BASE_URL}-8082.app.github.dev"
4040
echo " - MinIO Console: ${BASE_URL}-9001.app.github.dev"
4141
else
4242
echo "Running locally!"
4343
echo ""
4444
echo "Available services:"
4545
echo " - Main Application: http://localhost:8080"
4646
echo " - Traefik Dashboard: http://localhost:8081/dashboard/"
47-
echo " - Redpanda Console: http://localhost:8082"
47+
echo " - Kafbat Console: http://localhost:8082"
4848
echo " - MinIO Console: http://localhost:9001"
4949
fi
5050

docker-compose.dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ services:
3737
- QUARKUS_DATASOURCE_PASSWORD=sticker_password
3838
- QUARKUS_DATASOURCE_DB_KIND=postgresql
3939
# Kafka configuration
40-
- KAFKA_BOOTSTRAP_SERVERS=redpanda:9092
41-
- MP_MESSAGING_CONNECTOR_SMALLRYE_KAFKA_BOOTSTRAP_SERVERS=redpanda:9092
42-
- QUARKUS_KAFKA_STREAMS_BOOTSTRAP_SERVERS=redpanda:9092
40+
- KAFKA_BOOTSTRAP_SERVERS=kafka:9092
41+
- MP_MESSAGING_CONNECTOR_SMALLRYE_KAFKA_BOOTSTRAP_SERVERS=kafka:9092
42+
- QUARKUS_KAFKA_STREAMS_BOOTSTRAP_SERVERS=kafka:9092
4343
# S3/MinIO configuration
4444
- QUARKUS_S3_ENDPOINT_OVERRIDE=http://minio:9000
4545
- QUARKUS_S3_AWS_REGION=us-east-1

0 commit comments

Comments
 (0)