/my-portfolio

Primary LanguageJavaScript

Portfolio

Portfolio with React.js

Instructions for environment & development

Environments

  • Node.js

Install yarn

Open command prompt and type the command as follows.

npm install --global yarn

Install NPM Packages

Install NPM Packages for this project. Open Command Prompt on this project directory. And then run the following command.

yarn

Development

Run as Development mode

npm start

Deploy on Github pages

./deploy.github.pages.sh

Run as Production mode

Install serve npm. Please, should use only once. Because it's only for serving built files.

npm install --global serve

And run the below bash.

cd frontend
rm -fR ./build/
npm run build
serve -s build

You can visit and test via http://localhost:3000