mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
docs: add a requirements section to the developer docs.
Add a section on installing sed, which differs between GNU and OSX.
This commit is contained in:
parent
4821fe8c0a
commit
bd55fd03e9
2 changed files with 18 additions and 0 deletions
17
docs/developer/requirements.md
Normal file
17
docs/developer/requirements.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Requirements
|
||||
|
||||
Depending on your setup, you might need different tools to develop on argos. We try to list them here.
|
||||
|
||||
## Mac OS
|
||||
|
||||
### Gnu Sed
|
||||
|
||||
You will need to have gnu-sed installed. "sed" installed by default on MacOS machines differ from the gnu version (It's used for some post-documentation-generation hooks)
|
||||
|
||||
```bash
|
||||
|
||||
brew install gnu-sed
|
||||
|
||||
# This will explain how to add it to your path (to replace the default one)
|
||||
brew info gnu-sed
|
||||
```
|
|
@ -56,6 +56,7 @@ checks
|
|||
```{toctree}
|
||||
:caption: Developer docs
|
||||
:hidden:
|
||||
developer/requirements
|
||||
developer/overview
|
||||
developer/dependencies
|
||||
developer/new-check
|
||||
|
|
Loading…
Reference in a new issue