https://github.com/flaque/resume
https://github.com/flaque/resume
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flaque/resume
- Owner: Flaque
- Created: 2017-08-25T17:28:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-25T18:37:08.000Z (over 7 years ago)
- Last Synced: 2025-01-20T10:13:54.354Z (4 months ago)
- Language: JavaScript
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 📝 Resume
This repo is actually two projects. There's a "frontend" and a "backend". You can find both in `src`.
## Setup
This project uses [yarn](https://yarnpkg.com/en/) as it's package manager. You should [install](https://yarnpkg.com/en/docs/install) it before you get going. If you use mac, you can just install it with:
``` sh
$ brew install yarn
```Then, you can just run `yarn` to install dependencies and setup the project.
``` sh
$ yarn
```## Running
You can run both projects at once with:``` sh
$ yarn run dev
```Or you can run individual projects with:
``` sh
$ yarn run backend
$ yarn run frontend
```