diff options
author | Joris Guyonvarch | 2014-04-06 22:55:16 +0200 |
---|---|---|
committer | Joris | 2019-05-01 15:34:22 +0200 |
commit | 0fe906ae7453aa684e998bbcc7a78b62d84f0206 (patch) | |
tree | d3968af830b964193349187fb6fc583780cd0ce3 /README.md | |
parent | 8b11c4be2b3ac354fa14534662dbd92374617a3e (diff) |
Show resume and projects from a configuration file
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..7190ea6 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# Personal Page + +Generate a website presenting resume and project from data given by a yaml +file. + +## Required dependency + +- `pdflatex` + +## Getting started + +Install nix: + +``` bash +curl https://nixos.org/nix/install | sh +``` + +Then, launch the environment with: + +``` bash +make start +``` + +Later, stop the environment with: + +```bash +make stop +``` + +## Build + +``` sh +make build +``` + +## Configuration + +``` +port = 3000 +git = "https://gitlab.com/" +generateResumes = Daily # Hourly / Daily +``` |