-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: move to _static member in configuration
- Loading branch information
1 parent
5d1ebfd
commit ddf9c07
Showing
1 changed file
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"type": "RESUME", | ||
"version": "1.0.0", | ||
"_static": { | ||
"application": "[email protected]:from-static/static-resume.git", | ||
"version": "0.1.0" | ||
}, | ||
"metadata": { | ||
"title": "Resume | Jane Doe", | ||
"description": "This is an example resume generated from a static.json file." | ||
|
@@ -19,7 +21,6 @@ | |
"streetAddress": "20341 Whitworth Institute 405 N. Whitworth" | ||
}, | ||
"email": "[email protected]", | ||
"name": "Jane Doe", | ||
"telephone": "(425) 123-4567" | ||
}, | ||
"experience": [ | ||
|
@@ -30,10 +31,16 @@ | |
"industry": "Research" | ||
}, | ||
{ | ||
"title": "JOB TITLE", | ||
"company_name": "COMPANY NAME", | ||
"location": "LOCATION", | ||
"industry": "INDUSTRY" | ||
"title": "JOB TITLE 1", | ||
"company_name": "COMPANY NAME 1", | ||
"location": "LOCATION 1", | ||
"industry": "INDUSTRY 1" | ||
}, | ||
{ | ||
"title": "JOB TITLE 0", | ||
"company_name": "COMPANY NAME 0", | ||
"location": "LOCATION 0", | ||
"industry": "INDUSTRY 0" | ||
} | ||
] | ||
} | ||
|