Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kevinpruvost/portfolio

My portfolio website that presents myself and my projects. Take a look if you want to know more about me ! Made with ReactJS.
https://github.com/kevinpruvost/portfolio

portfolio reactjs

Last synced: 4 days ago
JSON representation

My portfolio website that presents myself and my projects. Take a look if you want to know more about me ! Made with ReactJS.

Awesome Lists containing this project

README

        

# My Portfolio
A portfolio presenting my most important projects (WIP).










Keep in mind that this does not represent all of my technical knowledge, I've done internships and I don't show here what I learnt working in companies.

My resume/CV would be more appropriate if you want to know more about me.

Link to test the project / check the portfolio : [kevinpruvost.github.io/portfolio]

[kevinpruvost.github.io/portfolio]: https://kevinpruvost.github.io/portfolio

# Description

It contains a presentation of the projects I'm the most proud of, a brief description of my personnality, what I love to do and the values I believe in.

Made with ReactJS.

# Brief Tutorial on how to host a React portfolio on Github Pages

* Make a Github repository of your future portfolio.
* Clone it on your computer.
* `cd` into its parent directory (`cd $REPO_PATH/../`).
* Launch this command `npm init react-app $REPO_DIRECTORY_NAME`.
* `cd` in the repository.
* Launch this command `npm install gh-pages --save-dev`.
* Modify `package.json` by adding these elements:
* `"homepage": "http://kevinpruvost.github.io/portfolio",` at the first line,
* And adding these lines in `"scripts"`:
* `"predeploy": "npm run build"`
* `"deploy": "gh-pages -d build"`
* So that it looks like this :

* Launch this command `npm run deploy`
* And then push the modifications to the repository.

You will have to repeat `npm run deploy` in order to publish your modifications.