Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinncode/react_portfolio
My portfoilo using react js
https://github.com/robinncode/react_portfolio
css javascript portfolio-website react reactjs
Last synced: about 2 months ago
JSON representation
My portfoilo using react js
- Host: GitHub
- URL: https://github.com/robinncode/react_portfolio
- Owner: robinNcode
- Created: 2023-01-05T14:38:39.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-26T19:47:38.000Z (over 1 year ago)
- Last Synced: 2024-04-18T07:09:28.398Z (9 months ago)
- Topics: css, javascript, portfolio-website, react, reactjs
- Language: JavaScript
- Homepage:
- Size: 102 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Fork This
You can fork this repo to modify and make changes of your own. Please give me proper credit by linking back to [robinNcode](https://github.com/robinncode/react_portfolio). Thanks!
## Built With
My personal portfolio robin.adovasoft.com which features some of my github projects as well as my resume and technical skills.
This project was built using these technologies.
- React.js
- Node.js
- Express.js
- CSS3
- VsCode## Change
You can change all the codes as per your need..## How to deploy on github pages
- First you need to install gh-pages package in your react app. To install run this command:
```
npm install gh-pages --save-dev
```
- Then you need to add homepage in your package.json file as below:
```
"homepage": "http://yourusername.github.io/repository-name",
```
- Then you need to add some scripts in your package.json file as below:
```
"scripts": {
//...
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
```
- Then you need to build your portfoilo by running:
```
npm run build
```
- To deploy your portfolio on github pages you need to run:
```
npm run deploy
```
- Then you need to go to your github repository settings and change source to gh-pages branch