upgrade(docker)

This commit is contained in:
stefan
2025-08-16 15:56:16 +02:00
parent 9c21154199
commit 54feec19d4
7 changed files with 7 additions and 23 deletions
-10
View File
@@ -102,7 +102,6 @@ temp-data/
# ===================================================================
# Kotlin Multiplatform specific
# ===================================================================
**/kotlin-js-store/
**/build/js/
**/build/compileSync/
**/build/klib/
@@ -119,7 +118,6 @@ temp-data/
# ===================================================================
**/prometheus-data/
**/grafana-data/
**/logs/
**/*.log.*
**/log/
@@ -138,21 +136,15 @@ temp-data/
# ===================================================================
# OS specific files
# ===================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ===================================================================
# JetBrains IDE
# ===================================================================
.idea/
*.iws
*.iml
*.ipr
out/
.idea_modules/
@@ -203,14 +195,12 @@ secrets/
# ===================================================================
TODO*.md
NOTES*.md
**/temp/
**/.junie/
# ===================================================================
# Keep essential files (override exclusions)
# ===================================================================
# Gradle wrapper
!gradle/wrapper/gradle-wrapper.jar
!gradle/wrapper/gradle-wrapper.properties
# Essential configuration files for builds
@@ -1,7 +1,5 @@
package at.mocode.client.data.service
import kotlinx.serialization.encodeToString
import kotlinx.serialization.decodeFromString
import kotlinx.serialization.json.Json
import kotlin.test.Test
import kotlin.test.assertEquals
@@ -134,7 +134,7 @@ class PingServiceTest {
@Test
fun `should properly encapsulate HttpClient lifecycle`() {
// Given
var client: HttpClient? = null
val client: HttpClient? = null
// When
val service = PingService()
@@ -2,8 +2,9 @@ package at.mocode.client.ui.viewmodel
import at.mocode.client.data.service.PingResponse
import at.mocode.client.data.service.PingService
import kotlinx.coroutines.*
import kotlinx.coroutines.test.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.cancel
import kotlin.test.*
@OptIn(kotlinx.coroutines.ExperimentalCoroutinesApi::class)
-4
View File
@@ -50,10 +50,6 @@ kotlin {
}
}
compose.experimental {
web.application {}
}
// Web-specific optimizations
tasks.named("jsBrowserDevelopmentWebpack") {
outputs.upToDateWhen { false }
@@ -3,7 +3,6 @@ package at.mocode.client.web
import kotlin.test.Test
import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import kotlin.test.assertEquals
class MainTest {
+3 -3
View File
@@ -114,7 +114,7 @@ scrape_configs:
# Only scrape services that have prometheus.scrape=true
- source_labels: [__meta_consul_service_metadata_prometheus_scrape]
action: keep
regex: true
regex: "true"
# Use service name as job name
- source_labels: [__meta_consul_service]
@@ -123,12 +123,12 @@ scrape_configs:
# Use custom metrics path if specified
- source_labels: [__meta_consul_service_metadata_prometheus_path]
target_label: __metrics_path__
regex: (.+)
regex: "(.+)"
# Use custom port if specified
- source_labels: [__address__, __meta_consul_service_metadata_prometheus_port]
target_label: __address__
regex: ([^:]+)(?::\d+)?;(\d+)
regex: "([^:]+)(?::\d+)?;(\d+)"
replacement: $1:$2
# ===================================================================