fix: dev mode relative path#5
Merged
Merged
Conversation
…ment mode instructions
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 introduces several improvements to local development workflow and documentation for the project, focusing on Docker integration and developer experience. The main changes are the addition of new subcommands to the
onecliwrapper script for building images, running in development mode, and opening an interactive shell inside the container. The documentation is updated to reflect these new workflows, and a.dockerignorefile is added to optimize Docker builds.Wrapper script enhancements:
build,dev, andshellsubcommands to theonecliscript, allowing for building the Docker image, mounting the local project directory for live code updates, and opening an interactive shell in the container, respectively. Also, a persistent.cachevolume is now mounted for all runs. [1] [2]Documentation updates:
README.mdto document the newbuild,dev, andshellsubcommands, including usage examples and workflow tips for development without rebuilding the Docker image. [1] [2]Docker build optimization:
.dockerignorefile to exclude unnecessary files and directories from the Docker build context, improving build performance and reducing image size.