this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add some notes in the README and flake.nix

A couple hints to remind me what I'm doing

+22
+19
README.md
··· 17 17 18 18 I need it to keep integration with Kitaab. That largely means a _json interface, which is fine. Some compatibility layer with Taskwarrior for taskwarrior-tui would be cool too, but isn't yet on the goal list. 19 19 20 + ## MVP 21 + 22 + For me to start using it one more piece of the puzzle needs to be worked out: 23 + 24 + Identity. I am vaguely aware of how to generate a room, and then use the room id to sync across the network 25 + But that doesn't stop anybody from then connecting to your room, and messing up your data 26 + For now, something simple like creating a key in localStorage and using that in some fashion to validate that the data is from the right person. I'll then need some kind of key transfer thing, such that we can authorize or generate subkeys. 27 + 28 + I'm not really sure how that will work yet. 29 + 30 + ## Parsing 31 + 32 + For the react application (in `mast-react-app`) I actually had to copy the parser to `src/lib/` in order to get it to build. 33 + The command to build the parsers is 34 + 35 + ``` 36 + npx peggy --format es command_js.peg 37 + ``` 38 + 20 39 ## Status 21 40 22 41 A vaguely unordered list of the next tasks to be accomplished, and those recently completed
+3
flake.nix
··· 96 96 devShells.default = pkgs.mkShell { 97 97 buildInputs = with pkgs; [ go pigeon nodejs sqlite git-bug openssl ]; 98 98 99 + # TODO: 100 + # Shell Aliases don't work for direnv because they're not shell portable 101 + # Find an alternative to this 99 102 shellHook = '' 100 103 alias start-dev='npm run dev' 101 104 alias build-dev='npm run build'