init repo
This commit is contained in:
25
.cursor/rules/deployment.mdc
Normal file
25
.cursor/rules/deployment.mdc
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
description:
|
||||
globs:
|
||||
alwaysApply: false
|
||||
---
|
||||
# Deployment Configuration
|
||||
|
||||
The project includes Docker configuration for containerized deployment:
|
||||
|
||||
- [Dockerfile](mdc:Dockerfile): Container definition for the application
|
||||
- [docker-compose.yml](mdc:docker-compose.yml): Multi-container deployment configuration
|
||||
|
||||
The application can be built and deployed using:
|
||||
|
||||
```bash
|
||||
# Build and run with Docker Compose
|
||||
docker-compose up -d
|
||||
|
||||
# Build Docker image directly
|
||||
docker build -t document_ai .
|
||||
docker run -p 8080:8080 document_ai
|
||||
```
|
||||
|
||||
The project also includes CI/CD configuration:
|
||||
- [.gitlab-ci.yml](mdc:.gitlab-ci.yml): GitLab CI/CD pipeline configuration
|
||||
Reference in New Issue
Block a user