This document describes how to develop neuron, as well as some guidelines when it comes to submiting a PR.
We recommend VSCode for developing Neuron, but any text editor supporting haskell-language-server will do. When opening the project in VSCode, install the two extensions (Haskell and Nix Environment Selector) it recommends.
Note: Nix Environment Selector should automatically select the shell.nix
environment; if it doesn't, you can hit Ctrl+Shift+P in VSCode and run the command "Nix-Env: Select Environment" to select shell.nix
manually. The extension will ask you to reload VSCode at the end.
You can expect full IDE support for Haskell in VSCode from this point.
When modifying the source code, use bin/run
(which uses ghcid) to test your changes in real-time:
bin/run -d ./doc gen -wS
This command automatically recompiles and restarts when you change any of the Haskell source files. Furthermore, this command runs site generation on the given Zettelkasten. You can pass the same neuron arguments to bin/run
. This is essentially equivalent to running a development version of neuron with instant reload.
Unit tests can be run via ghcid as follows:
bin/test
This too reloads when any of the source files change.
Neuron delegates HTML rendering of the Pandoc AST to reflex-dom-pandoc. To hack on it, first install nix-thunk and then:
# This will clone the git repo of reflex-dom-pandoc at dep/reflex-dom-pandoc
nix-thunk unpack dep/reflex-dom-pandoc
# Let's work on that repo
cd dep/reflex-dom-pandoc
Then you can try your changes with
# Run ghcid (using neuron's nix config)
nix-shell ../../shell.nix --run ghcid
Now as you edit the reflex-dom-pandoc sources, ghcid should give you compiler feedback. Once you are done with your changes, simply re-run neuron's ghcid or bin/run (see further above) and it should reflect your changes.
When you are done, commit your changes to reflex-dom-pandoc (presumably in a branch) and then git push
it. Finally, you must "pack" the thunk and commit the changes to the neuron repo:
cd ../.. # Back to neuron
rm -rf dep/reflex-platform/dist-newstyle # cleanup build artifacts before packing
nix-thunk pack dep/reflex-dom-pandoc
git add dep/reflex-dom-pandoc
- If your PR is adding a feature or fixing a user-facing bug, add a casual entry to CHANGELOG.md mentioning the PR number.
- Update the
version
field in neuron.cabal. Changea.b.c.d
toa.b.(c+1).0
.
Run the bin/format
script to auto-format your Haskell source changes using ormolu. You don't need to do this when using VSCode which is configured to auto-format on save.
Run nix-build
with your changes to make sure that everything compiles, and the tests succeed.
nix-build
will produce a binary under ./result/bin/neuron
. You can also install directly from source using nix-env -if .
.