-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Documentation improvements #1365
Conversation
Deploying devenv with Cloudflare Pages
|
15e9469
to
0a72193
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Let's fix the CI bits and we should be good to go.
flake.nix
Outdated
pkgs.stdenv.mkDerivation { | ||
name = "generate-individual-docs"; | ||
src = ./.; | ||
buildPhase = '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really important, just suggestions:
runCommand
is a common helper for derivations like these.- If you don't need the entire source, you can set
src = ./docs
to avoid copying the entire source to the store.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried using runCommand
and I don't think it handles the src
attributes gracefully:
https://discourse.nixos.org/t/using-the-src-attribute-in-runcommand/19329
fix: Fix filterOptions.nix and doc generation
8fe7cdd
to
0de4d5d
Compare
1e466d0
to
96f6c41
Compare
This PR improves the UX with the current documentation of devenv.sh, this PR does:
languages
,services
,processes-managers
andintegrations(todo)
docs/individual-docs
resolves #674