-
Notifications
You must be signed in to change notification settings - Fork 1
Dev 2 #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
…te component exports Signed-off-by: Wyatt Roersma <[email protected]>
…justments, and container handling
…ent permission errors
…ule import errors
…process to get working MCP server Signed-off-by: Wyatt Roersma <[email protected]>
…process to get working MCP server Signed-off-by: Wyatt Roersma <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 140 out of 143 changed files in this pull request and generated 1 comment.
Files not reviewed (3)
- Dockerfile: Language not supported
- Makefile: Language not supported
- backend/alembic.ini: Language not supported
Comments suppressed due to low confidence (1)
backend/app/api/routes/mcp.py:249
- The use of MCPConfigService.stop_server is inconsistent with other endpoints that call the imported stop_server function. It may be a mistake; consider reverting to the consistent function usage.
status_result = MCPConfigService.stop_server(db, config_id) # Renamed variable
| # Create access and refresh tokens | ||
| access_token, refresh_token = create_token_pair(user.id) | ||
| # Create access and refresh tokens with expiration based on remember_me | ||
| access_token_expires = timedelta(days=30 if remember_me else 1) |
Copilot
AI
Apr 9, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The timedelta function is used without being imported. Please add 'from datetime import timedelta' at the top of the file.
This pull request includes significant updates to the CI/CD pipeline, Dockerfile, and Makefile to improve the build process, dependency management, and environment configuration. The changes enhance the automation and consistency of the development and deployment workflows.
CI/CD Pipeline Enhancements:
.github/workflows/ci-cd.ymlto automate build, test, and deployment processes. This includes steps for setting up Docker, building and testing Docker images, and pushing images to the GitHub Container Registry.Dockerfile Improvements:
python:3.13-slimand added Docker CLI installation steps for both development and production stages. This ensures compatibility with the latest Python version and allows containerized management. [1] [2] [3]Makefile Enhancements:
Makefile. This allows for more flexible and consistent environment configurations and builds. [1] [2]These changes collectively improve the automation, efficiency, and reliability of the development and deployment workflows.