Refactor auth-service to iam-service and update related configurations

- Renamed auth-service to iam-service across various files for consistency.
- Updated deployment workflows, database migration scripts, and documentation to reflect the service name change.
- Enhanced bilingual documentation for clarity on the new service structure and usage.
- Removed outdated references to auth-service in scripts and configuration files to streamline the project structure.
This commit is contained in:
Ho Ngoc Hai
2025-12-30 21:03:00 +07:00
parent b104fafa85
commit 019c79b898
23 changed files with 57 additions and 58 deletions

View File

@@ -6,12 +6,12 @@ on:
- main
- develop
paths:
- 'services/auth-service/**'
- 'services/iam-service/**'
- 'apps/web-*/**'
workflow_dispatch:
jobs:
build-auth-service:
build-iam-service:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -25,16 +25,16 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Auth Service
- name: Build and push IAM Service
uses: docker/build-push-action@v5
with:
context: ./services/auth-service
context: ./services/iam-service
push: true
tags: |
goodgo/auth-service:latest
goodgo/auth-service:${{ github.sha }}
cache-from: type=registry,ref=goodgo/auth-service:buildcache
cache-to: type=registry,ref=goodgo/auth-service:buildcache,mode=max
goodgo/iam-service:latest
goodgo/iam-service:${{ github.sha }}
cache-from: type=registry,ref=goodgo/iam-service:buildcache
cache-to: type=registry,ref=goodgo/iam-service:buildcache,mode=max
build-web-admin:
runs-on: ubuntu-latest