Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #173 +/- ##
=======================================
Coverage 74.02% 74.02%
=======================================
Files 68 68
Lines 1559 1559
Branches 33 33
=======================================
Hits 1154 1154
Misses 403 403
Partials 2 2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
abkfenris
marked this pull request as ready for review
July 10, 2026 21:08
Adds a devcontainer configuration and setting of tools with [mise](https://mise.jdx.dev/). This allows the same config to be set for our dev tools across environments, and the devcontainer allows spinning up isolated environments on the fly (Codespaces, locally to keep Claude & friends from rampaging around your system). For launching in Codespaces, use the `New with options...` and select the Codespace container. Locally we can connect to the host’s Docker, but on Codespaces it needs to run itself.
Only chown env-dir paths that exist. The Codespaces config has no named volumes, so .pixi/.venv/node_modules do not exist at post-create time and the unconditional chown aborted the script under set -e.
abkfenris
force-pushed
the
devcontainer
branch
from
August 13, 2026 20:05
2cb3c0b to
b82e079
Compare
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.
Adds a devcontainer configuration and setting of tools with mise. This allows the same config to be set for our dev tools across environments, and the devcontainer allows spinning up isolated environments on the fly (Codespaces, locally to keep Claude & friends from rampaging around your system).
For launching in Codespaces, use the
New with options...and select the Codespace container. Locally we can connect to the host’s Docker, but on Codespaces it needs to run itself.