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

https://github.com/thuyencode/cv-application-the-odin-project

Project: CV Application | The Odin Project
https://github.com/thuyencode/cv-application-the-odin-project

theodinproject

Last synced: about 1 month ago
JSON representation

Project: CV Application | The Odin Project

Awesome Lists containing this project

README

          

# Project: CV Applications

The design of this project is inspired by [resume.io](https://resume.io/resume-templates/simple)'s Berlin CV design.

[More detail information here](https://www.theodinproject.com/lessons/node-path-react-new-cv-application).

## Getting started

First, install all the dependencies:

```bash
npm install

# If you prefer bun
bun i
```

To run the dev server:

```bash
npm run dev

# If you prefer bun
bun dev
```

To export and preview the production build:

```bash
npm run build
npm run preview

# If you prefer bun
bun run build
bun run deploy
```