Update README makefile commands for corporate macs - #474
Open
ems-sato wants to merge 3 commits into
Open
Conversation
ems-sato
force-pushed
the
EQS-1149-Update-READMEs-Makefile-commands-for-Corporate-Macs
branch
2 times, most recently
from
September 3, 2026 19:13
bed1041 to
5f05ddc
Compare
ems-sato
force-pushed
the
EQS-1149-Update-READMEs-Makefile-commands-for-Corporate-Macs
branch
from
September 3, 2026 19:20
5f05ddc to
f39dee4
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.
Motivation and Context
Homebrew is no longer available on Corporate MacBooks, so the README's local setup instructions no longer work. This reworks them to use Miniconda + conda-forge for packages and Podman as the container runtime, replacing brew, pyenv, nvm and Colima.
Two things surfaced while testing on a clean environment:
csc_swgag) on corporate machines, so the AJV validator can't bind to it.development.envwas never loaded by the app.api.pybuilds the AJV URL fromAJV_VALIDATOR_SCHEME/HOST/PORTwith no defaults, and nothing calledload_dotenv(), so all three resolved toNoneand/validatereturned 503What has changed
.development.env,ajv/app.js,Dockerfile,Dockerfile-ajv,.github/workflows/pull_request.ymland the README.environment.ymlpinningpython=3.14.6,nodejs=22.13.0,poetry=2.4.2.python-dotenvand aload_dotenv()call inapi.py.Poetry is pinned to 2.4.2 rather than 2.1.2: poetry 2.1.2 requires
dulwich >=0.22.6,<0.23.0and no build in that range supports Python 3.14, so the conda solve fails.Node is pinned to 22.13.0 because conda-forge has no 22.15.0 build (matching
.nvmrc). That version bundles npm 10.9.2, on whichmake runnever reachespoetry run python api.pyandnpm run startholds the terminal despite the trailing&. The README documents upgrading to npm 11.6.1 as a temporary step; this can be removed once conda-forge ships a Node build with npm 11.How to test?
Retrace the new README steps on a corporate Macbook and confirm the setup works from a clean start
Links
Jira Ticket: https://officefornationalstatistics.atlassian.net/browse/EQS-1149