generated from coulomb/repo-seed
- scripts/compile-check: runs ghcid in isolation (no postgres/tailwind) for fast incremental compilation feedback; writes errors to /tmp/ihub-compile-errors.txt - .ghci: add -fkeep-going so GHC reports all module errors in one pass - WP-0016 workplan: documents module dependency layers, error-fix SOP, and autonomous ralph-loop approach for iterative error fixing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
482 B
Plaintext
10 lines
482 B
Plaintext
:set -XNoImplicitPrelude
|
|
:def loadFromIHP \file -> (System.Environment.getEnv "IHP_LIB") >>= (\ihpLib -> readFile (ihpLib <> "/" <> file))
|
|
:loadFromIHP applicationGhciConfig
|
|
-- Resource limit: override IHP's default -j (unlimited parallel) with -j1
|
|
-- on this constrained host (2 CPU / 3.8 GiB RAM).
|
|
:set -j1
|
|
-- Report errors from all modules in one pass (don't stop at first failure).
|
|
-- Critical for batch error fixing — see IHUB-WP-0016 C4.
|
|
:set -fkeep-going
|
|
import IHP.Prelude |