Go to file
2021-11-04 17:11:38 +01:00
src style update 2021-11-04 17:11:38 +01:00
static Update static/robots.txt 2021-11-03 22:05:34 +00:00
.eslintrc.cjs first commit 2021-10-02 14:29:49 +02:00
.gitignore first commit 2021-10-02 14:29:49 +02:00
.gitlab-ci.yml updated ci 2021-10-18 11:27:28 +02:00
.prettierrc first commit 2021-10-02 14:29:49 +02:00
default.conf almost done 2021-10-10 21:44:53 +02:00
docker-compose.yml checked all the tecnologies and languages 2021-10-19 09:35:19 +02:00
dockerfile almost done 2021-10-10 21:44:53 +02:00
LICENSE added license 2021-10-14 12:26:17 +02:00
list of cv checked all the tecnologies and languages 2021-10-19 09:35:19 +02:00
package-lock.json updated animation/navigation 2021-10-19 16:33:21 +02:00
package.json updated animation/navigation 2021-10-19 16:33:21 +02:00
README.md checked all the tecnologies and languages 2021-10-19 09:35:19 +02:00
svelte.config.js updated animation/navigation 2021-10-19 16:33:21 +02:00
tsconfig.json base structure 2021-10-04 18:24:20 +02:00

My CV

I created this website to collect and present all my experiences and works. I made these pages using Typescript and Svelte. To manage the content, I've created a simple system to load content from a couple of JSON files that define where to put the information.

How to build

To build this project, you need to run two commands on a machine with Node.js

  • npm install
  • npm run build

then you can load the built website on a webserver

How to edit the content

I've defined the content structure through a JSON schema that you can find in /src/model/schema.json. There are three files (portfolio.json, schema.json, training.json) that define the content of the associated section. Svelte support HMR to speed up the development. To run the development server:

  • npm install
  • npm run dev

Then you can visit the development site on http://localhost:3000 when a file is edited the server re-renders the page that you are visiting.