Launcher updates#27
Merged
Merged
Conversation
Declutter the repo root by consolidating all 7 launcher scripts into a launchers/ folder. Behaviour is unchanged — each launcher now resolves the repo root as its parent directory: - Shell launchers (launch-native.sh/.command, launch-native-jupyter.sh) cd to /..; the jupyter worker is now self-locating. - Windows .bat launchers compute the repo root via %~dp0.. and point the jupyter worker at ./launchers/launch-native-jupyter.sh. - launch-app.bat still finds quantui.sif next to itself (student download) or in the repo root (dev build). Updated all references in README.md, apptainer/README.md, copilot-instructions.md, .gitignore, the offline-startup test comment, and added a CHANGELOG entry. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Collaborator
Author
|
@copilot resolve the merge conflicts in this pull request |
Contributor
Resolved in |
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.
This pull request reorganizes and improves the project's launcher scripts for better maintainability and cross-platform support. All launcher scripts have been moved into a new
launchers/folder, with updates to their logic for more robust detection of the repository root and conda environments. Documentation and references throughout the project have been updated to reflect these changes, and the launchers now support a wider range of conda installations across Windows, macOS, and Linux/WSL.Launcher script reorganization:
.bat,.sh,.command) have been moved from the repository root into a newlaunchers/folder to reduce clutter and improve organization. References in documentation and shortcuts have been updated accordingly.Cross-platform improvements and conda detection:
.bat), macOS (.command), and Linux/WSL (.sh) now robustly detect the repository root (by resolving their own location and moving up a directory) so they work regardless of the user's current working directory.Documentation updates:
README.mdand other documentation files have been updated to reference the new launcher locations and to clarify platform-specific usage instructions, including best practices for WSL users..github/copilot-instructions.mdandCHANGELOG.mdhave been updated to reflect the new launcher organization and usage patterns.Launcher logic improvements:
quantui.sifmore flexibly, supporting both student downloads and developer builds.These changes collectively make the project easier to use and maintain across all supported platforms.