summaryrefslogtreecommitdiff
path: root/.envrc
Commit message (Collapse)AuthorAge
* Put `npm`'s bin directory on `$PATH` when using direnv.Owen Jacobson2025-05-28
| | | | | | | | | | This allows developers (hi) to run tools installed via NPM without having to run `npm exec` or `npx` to do so. It's mostly for ergonomics, but it's nice to be able to run `vite build` and have it "just" work. The "canonical" invocations, used in tool scripts or when `build.rs` has to run Node, uses `npx`. More generally, we don't assume direnv, even though the source tree provides it. There is no corresponding `layout rust` in `direnv`, but the same niche is fulfilled by the `PATH_add` targeting Cargo's output directory. I also considered using `PATH_add` instead of `layout` for this, as they do the same thing (at least as of this version of `direnv`), but I think it's probably more appropriate to use the parts of direnv that express the broader intention to use Node's tools than to manually implement them myself. If you're using `direnv` across this change, you'll need to re-run `direnv allow`.
* Rename the project to `pilcrow`.Owen Jacobson2024-11-08
|
* Allow login creation and authentication.Owen Jacobson2024-09-03
| | | | | | | | | | This is a beefy change, as it adds a TON of smaller pieces needed to make this all function: * A database migration. * A ton of new crates for things like password validation, timekeeping, and HTML generation. * A first cut at a module structure for routes, templates, repositories. * A family of ID types, for identifying various kinds of domain thing. * AppError, which _doesn't_ implement Error but can be sent to clients.
* Tools scripts; `run` to run the server in fewer keystrokesOwen Jacobson2024-08-30