Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelcamargo/portfolio
Rafael Camargo's Portfolio
https://github.com/rafaelcamargo/portfolio
design portfolio programming
Last synced: 10 days ago
JSON representation
Rafael Camargo's Portfolio
- Host: GitHub
- URL: https://github.com/rafaelcamargo/portfolio
- Owner: rafaelcamargo
- Created: 2019-09-23T13:25:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T01:30:31.000Z (3 months ago)
- Last Synced: 2024-08-28T02:49:03.816Z (3 months ago)
- Topics: design, portfolio, programming
- Language: JavaScript
- Homepage: https://rafaelcamargo.com
- Size: 46.6 MB
- Stars: 9
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Portfolio
> Rafael Camargo's Portfolio[![CircleCI](https://circleci.com/gh/rafaelcamargo/portfolio/tree/master.svg?style=svg)](https://circleci.com/gh/rafaelcamargo/portfolio/tree/master)
[![codecov](https://codecov.io/gh/rafaelcamargo/portfolio/branch/master/graph/badge.svg)](https://codecov.io/gh/rafaelcamargo/portfolio)## Contributing
1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.
2. Clone the repo:
``` bash
git clone [email protected]:rafaelcamargo/portfolio.git
```3. Go to the project directory
``` bash
cd portfolio
```4. Install the project dependencies
``` bash
npm install
```5. If you want to just build the project, run:
``` bash
npm run build
```6. Otherwise, run:
``` bash
npm run start
```The app will be running on `http://localhost:8080`.
## Tests
1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```2. You can optionally generate coverage report after running tests:
``` bash
npm run test -- --coverage
```