feat: add run configurations to improve developer experience#4087
Merged
aglinxinyuan merged 7 commits intoapache:mainfrom Dec 2, 2025
Merged
feat: add run configurations to improve developer experience#4087aglinxinyuan merged 7 commits intoapache:mainfrom
aglinxinyuan merged 7 commits intoapache:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds pre-configured IntelliJ IDEA run configurations to streamline the local development setup. Developers can now launch all backend microservices, the frontend application, and lakeFS directly from IntelliJ's run menu without manually searching for main classes or compose files.
- Adds 8 individual run configurations for backend microservices (AccessControlService, ComputingUnitManagingService, ComputingUnitMaster, ComputingUnitWorker, ConfigService, FileService, TexeraWebApplication, WorkflowCompilingService)
- Adds a compound run configuration to launch all backend services together
- Adds configurations for frontend (npm start) and lakeFS (Docker Compose)
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .run/AccessControlService.run.xml | Run configuration for the AccessControlService microservice |
| .run/ComputingUnitManagingService.run.xml | Run configuration for the ComputingUnitManagingService microservice |
| .run/ComputingUnitMaster.run.xml | Run configuration for the ComputingUnitMaster component |
| .run/ComputingUnitWorker.run.xml | Run configuration for the ComputingUnitWorker component |
| .run/ConfigService.run.xml | Run configuration for the ConfigService microservice |
| .run/FileService.run.xml | Run configuration for the FileService microservice |
| .run/TexeraWebApplication.run.xml | Run configuration for the main TexeraWebApplication service |
| .run/WorkflowCompilingService.run.xml | Run configuration for the WorkflowCompilingService microservice |
| .run/frontend.run.xml | Run configuration for the frontend application using npm start |
| .run/texera-lakefs.run.xml | Docker Compose run configuration for lakeFS |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
|
@mengw15 @Xiao-zhen-Liu can you test it? |
Contributor
I just tested this feature and it works fine on my side. |
Contributor
|
Also @aglinxinyuan @aicam please test it as well. |
Contributor
|
@chenlica @aglinxinyuan can we merge it? |
aglinxinyuan
added a commit
that referenced
this pull request
Dec 6, 2025
### What changes were proposed in this PR? Add a configuration option to automatically shorten file paths for Windows users when the original path exceeds the system’s maximum length. After this PR, Windows users should not see this error anymore. <img width="612" height="157" alt="image" src="https://github.com/user-attachments/assets/73a23ef2-0fad-4f2f-bc99-c7f2e576a4d9" /> ### Any related issues, documentation, discussions? Follow-up of PR #4087 ### How was this PR tested? Tested manually. ### Was this PR authored or co-authored using generative AI tooling? No
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.
What changes were proposed in this PR?
This PR adds pre-configured IntelliJ run configurations for:
With these changes, developers can now launch the backend services, lakeFS, and frontend directly from IntelliJ’s run menu, eliminating the need to manually locate and configure each relevant class or compose file. This leverages IntelliJ’s built-in Compound and individual run configurations, so no additional plugins are required.
2025-11-26.13-46-11.mp4
Any related issues, documentation, discussions?
Fixes #4045
How was this PR tested?
Verified on a local IntelliJ IDEA environment. The Compound run config cleanly launches all backend microservices in parallel.
Was this PR authored or co-authored using generative AI tooling?
No