Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

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

docs: fix console command style in contributing.md (#302)

authored by

crasm and committed by
GitHub
586dd03f 9d749f4c

+11 -11
+11 -11
docs/src/content/docs/contributing.md
··· 37 37 38 38 First, clone your fork of the repository. 39 39 40 - ``` 41 - $ git clone 'https://github.com/<your-username>/den' 42 - $ cd den 40 + ```console 41 + git clone 'https://github.com/<your-username>/den' 42 + cd den 43 43 ``` 44 44 45 45 Next, enter a nix shell. 46 - ``` 46 + ```console 47 47 ## Classic tooling 48 - $ nix-shell 48 + nix-shell 49 49 50 50 ## or flakes tooling! 51 - $ nix develop 51 + nix develop 52 52 ``` 53 53 54 54 Then, change to the docs directory and install the necessary dependencies to `docs/node_modules`. 55 55 56 - ``` 57 - $ cd docs 58 - $ pnpm install 56 + ```console 57 + cd docs 58 + pnpm install 59 59 ``` 60 60 61 61 Finally, start the docs webserver. 62 62 63 - ``` 64 - $ just docs 63 + ```console 64 + just docs 65 65 ``` 66 66 67 67 Now, you can edit the `.mdx` files in `docs/src/content/docs` and see your changes reflected immediately.