Seize Platform - Backend
// readme
6529SEIZE-BACKEND
This is a 2-part repository for
0. Repo Helpers
This repo includes a .envrc for direnv.
It is only used for repo-local shell helpers. Right now it adds the repo bin/
directory to your PATH, which makes commands like 6529, ghruns, and
ghdeploy available anywhere inside this repository. Direct package-manager
commands are blocked there; 6529 runs the npm version pinned by the current
package through Corepack without replacing your machine-wide npm.
It does not load .env.local and it does not set NODE_ENV.
0.1 Setup direnv
- Install
direnvon your machine. - Enable the
direnvshell hook.
For zsh, add this to ~/.zshrc:
eval "$(direnv hook zsh)"
For bash, add this to ~/.bashrc:
eval "$(direnv hook bash)"
Then reload your shell config, for example:
source ~/.zshrc
0.2 Allow this repo
From the repo root, run:
direnv allow
If .envrc changes later, run:
direnv allow
again to approve the updated file.
0.3 Verify
From the repo root, you should be able to run:…