Open
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR removes unused code from the project by deleting three main folders: attendee, cli, and lingo-ui. The changes reflect a cleanup effort to eliminate unused components from the codebase.
- Removed the
lingo-uifolder containing a frontend UI application - Removed the
attendeefolder containing a Django-based meeting bot application - Removed the
clifolder containing Python command-line interface tools - Updated
docker-compose.ymlto reflect new service naming conventions and add networking configuration
Reviewed Changes
Copilot reviewed 166 out of 257 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| docker-compose.yml | Renamed services, added network configuration, and commented out postgres dependency |
| lingo-ui/* | Removed entire lingo-ui folder including HTML, config files, and documentation |
| cli/* | Removed CLI tools including logging, model loading, and entity extraction scripts |
| attendee/* | Removed Django application including templates, tests, bot adapters, and management code |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| volumes: | ||
| - ./app:/lingo/app | ||
| - lingo-ai | ||
| #- postgres |
There was a problem hiding this comment.
The indentation is inconsistent. Line 15 has the correct indentation with 6 spaces, but the commented line 16 has 8 spaces. Even though it's commented, this should be corrected or removed.
Suggested change
| #- postgres | |
| #- postgres |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Removed attendee, bot and lingo-ui folder as it was unused code.