Open xandkar opened 3 months ago
Yo! Definitely not ready to use at all, still fleshing out ideas for this.
If you really want to run it take a look at the justfile
, there's a dev
command I use to run both the client and the server simultaneously.
dev *args:
bunx concurrently \
--kill-others \
--names 'server,client' \
--prefix-colors 'green.bold,magenta.bold' \
--prefix '[{name}] ' \
--prefix-length 2 \
--success first \
--handle-input \
--timestamp-format 'HH:mm:ss' \
--color \
-- \
'just watch run -- {{args}} serve' \
'bun run dev'
I run just dev --crate-path <crate-path>
, by default the web app is available at http://localhost:5173/
and the server at http://localhost:8000/
.
Eventually when I'm ready to distribute it I'll serve the static assets with the server.
You should end up seeing a graph like this
Still ideating on how I'm gonna hook up dependencies between syntactic items and also generate documentation / explanations using a local LLM connection.
Sounds exciting, but how do I use it?
I tried this: