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
- Host: GitHub
- URL: https://github.com/thuyencode/cv-application-the-odin-project
- Owner: thuyencode
- Created: 2024-05-23T03:08:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-23T03:22:22.000Z (over 1 year ago)
- Last Synced: 2025-03-21T02:25:22.688Z (11 months ago)
- Topics: theodinproject
- Language: TypeScript
- Homepage: https://thuyencode.github.io/cv-application-the-odin-project/
- Size: 1.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```