- Added companyCode to the AuthController for improved logging.
- Updated sendSmartFactoryLog function to support company-specific API keys.
- Configured environment variables for company-specific Smart Factory API keys in Docker Compose files.
This update ensures that logs are more informative and that the correct API keys are used based on the company context.
- Created a new .env.example file to provide a template for environment variables, including database connection details, JWT settings, encryption keys, and external API keys.
- Updated .gitignore to include additional test output directories and archive files, ensuring that unnecessary files are not tracked by Git.
- Removed outdated approval test reports and scripts that are no longer needed, streamlining the project structure.
These changes improve the clarity of environment configuration and maintain a cleaner repository.
문제:
- docker/dev/backend.Dockerfile에 Prisma 명령 남아있음
- docker/prod/backend.Dockerfile에 Prisma 명령 남아있음
- Docker 빌드 시 '/prisma' not found 에러 발생
해결:
1. docker/dev/backend.Dockerfile:
- COPY prisma ./prisma 제거
- RUN npx prisma generate 제거
2. docker/prod/backend.Dockerfile:
- Dependencies stage: Prisma 관련 코드 제거
- Build stage: COPY prisma 제거, npx prisma generate 제거
- Runtime stage: 주석 업데이트
결과:
- ✅ Docker 빌드 에러 해결
- ✅ Prisma 의존성 완전 제거
- ✅ 개발/운영 환경 모두 Raw Query 기반