mirror of https://github.com/eyhc1/rendercv.git
docs: improve developer guide
This commit is contained in:
parent
077246c097
commit
6a44febecf
|
@ -34,7 +34,7 @@ python -m venv .venv
|
||||||
|
|
||||||
6. Install the dependencies.
|
6. Install the dependencies.
|
||||||
```bash
|
```bash
|
||||||
pip install .[docs,tests,dev]
|
pip install --editable .[docs,tests,dev]
|
||||||
```
|
```
|
||||||
|
|
||||||
## How RenderCV works?
|
## How RenderCV works?
|
||||||
|
@ -62,6 +62,14 @@ The documentation's source files are located in the `docs` directory and it is b
|
||||||
mkdocs serve
|
mkdocs serve
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Updating the examples and the JSON Schema
|
||||||
|
|
||||||
|
The example entry images found in the [Structure of the YAML input file](user_guide/structure_of_the_yaml_input_file.md), the `examples` folder, and the JSON Schema `schema.json` are generated using the script `docs/update_rendercv_files.py`. To update these files, run `update_rendercv_files.py` with the following command.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python docs/update_rendercv_files.py
|
||||||
|
```
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
After updating the code, all tests should pass. To run the tests, use the following command.
|
After updating the code, all tests should pass. To run the tests, use the following command.
|
||||||
|
|
Loading…
Reference in New Issue