https://github.com/srid/tagtree
Haskell library for representing hierarchical tags
https://github.com/srid/tagtree
haskell tags
Last synced: 7 months ago
JSON representation
Haskell library for representing hierarchical tags
- Host: GitHub
- URL: https://github.com/srid/tagtree
- Owner: srid
- License: bsd-3-clause
- Created: 2021-06-09T22:51:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-13T23:45:49.000Z (about 2 years ago)
- Last Synced: 2025-05-16T22:08:31.283Z (9 months ago)
- Topics: haskell, tags
- Language: Haskell
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tagtree
Haskell library for representing hierarchical tags, such as `foo/bar/qux`, as well as a tree of such tags and then searching them based on path patterns.
## Developing
- [Install Nix](https://nixos.org/download.html) & [enable Flakes](https://nixos.wiki/wiki/Flakes)
- Run `nix-shell --run haskell-language-server` to sanity check your environment
- [Open as single-folder workspace](https://code.visualstudio.com/docs/editor/workspaces#_singlefolder-workspaces) in Visual Studio Code
- Install the [workspace recommended](https://code.visualstudio.com/docs/editor/extension-marketplace#_workspace-recommended-extensions) extensions
- Ctrl+Shift+P to run command "Nix-Env: Select Environment" and select `shell.nix`. The extension will ask you to reload VSCode at the end.
- Press Ctrl+Shift+B in VSCode, or run `bin/run` (`bin/run-via-tmux` if you have tmux installed) in terminal, to launch Ghcid running your program.
All but the final step need to be done only once.