diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 6656b06..f15d3dd 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -1,4 +1,4 @@ -name: Rust CI +name: soaricarus_api CI on: push: diff --git a/Cargo.lock b/Cargo.lock index b46258a..37168be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2183,7 +2183,7 @@ dependencies = [ ] [[package]] -name = "soaricarus" +name = "soaricarus_api" version = "0.5.2" dependencies = [ "axum", diff --git a/Cargo.toml b/Cargo.toml index 6c5ff4f..d85cfe7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "soaricarus" +name = "soaricarus_api" version = "0.5.2" edition = "2024" rust-version = "1.95" diff --git a/docker-compose.yaml b/docker-compose.yaml index 6d97aff..bb2612c 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -6,7 +6,7 @@ services: build: context: . ssh: ["default"] - container_name: icarus + container_name: soaricarus ports: - "8000:8000" env_file: @@ -15,7 +15,7 @@ services: main_db: condition: service_healthy networks: - - icarus-network + - soaricarus-network restart: unless-stopped # --- Web API auth --- @@ -64,9 +64,9 @@ services: container_name: soaricarus_db environment: # These MUST match the user, password, and database name in the DATABASE_URL above - POSTGRES_USER: ${POSTGRES_MAIN_USER:-icarus} + POSTGRES_USER: ${POSTGRES_MAIN_USER:-soaricarus} POSTGRES_PASSWORD: ${POSTGRES_MAIN_PASSWORD:-password} - POSTGRES_DB: ${POSTGRES_MAIN_DB:-icarus_db} + POSTGRES_DB: ${POSTGRES_MAIN_DB:-soaricarus_db} volumes: # Persist database data using a named volume - postgres_data:/var/lib/postgresql @@ -83,7 +83,7 @@ services: networks: - soaricarus-network - # --- icarus web auth api db --- + # --- soaricarus web auth api db --- auth_db: image: postgres:18.4-alpine container_name: soaricarus_auth_db