Update README with recent changes
This commit is contained in:
parent
c2e58c9c68
commit
cc0c61d567
1 changed files with 18 additions and 4 deletions
22
README.md
22
README.md
|
@ -12,13 +12,13 @@ You need to make it separately, and symlink or put it in the root directory of t
|
|||
```
|
||||
data/
|
||||
|- cv-photo.png
|
||||
|- experiences.json
|
||||
|- education.json
|
||||
|- experience.json
|
||||
|- meta.json
|
||||
```
|
||||
|
||||
The format of the json files should be the following:
|
||||
- `experiences.json`, `education.json`:
|
||||
- `experience.json`, `education.json`:
|
||||
```json
|
||||
[
|
||||
{
|
||||
|
@ -50,7 +50,7 @@ The format of the json files should be the following:
|
|||
"city": "...",
|
||||
"git": "...",
|
||||
"site": "...",
|
||||
"atouts": [
|
||||
"assets": [
|
||||
"...",
|
||||
"..."
|
||||
],
|
||||
|
@ -58,7 +58,7 @@ The format of the json files should be the following:
|
|||
"...",
|
||||
"..."
|
||||
],
|
||||
"competences": {
|
||||
"skills": {
|
||||
"...": [
|
||||
"...",
|
||||
"..."
|
||||
|
@ -68,4 +68,18 @@ The format of the json files should be the following:
|
|||
}
|
||||
```
|
||||
|
||||
Each key can contain a dict wrapping the values in language keys.
|
||||
So instead of writing:
|
||||
```json
|
||||
"title": "...",
|
||||
```
|
||||
|
||||
You can write:
|
||||
```json
|
||||
"title": {
|
||||
"en": "...",
|
||||
"fr": "..."
|
||||
},
|
||||
```
|
||||
|
||||
Once the json files are ready, run `./cvbuild.py` to create a file `out.html` which contains the CV.
|
||||
|
|
Loading…
Reference in a new issue