Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevindebenedetti/portfolio_vue
https://github.com/kevindebenedetti/portfolio_vue
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kevindebenedetti/portfolio_vue
- Owner: KevinDeBenedetti
- Created: 2023-08-08T16:37:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-24T17:14:41.000Z (about 1 year ago)
- Last Synced: 2023-09-25T07:41:50.311Z (about 1 year ago)
- Language: Vue
- Size: 1.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Portfolio_vue
My portfolio developed with Vue V3 & Express.
## Frontend
### Dependencies
```sh
npm i axios
```
```sh
npm i prismjs
```
```sh
npm i tailwindcss
```## Backend
### Dependencies
```sh
npm i axios
```
```sh
npm i body-parser
```
```sh
npm i connect-history-api-fallback
```
```sh
npm i cors
```
```sh
npm i dotenv
```
```sh
npm i express
```
```sh
npm i express-validator
```
```sh
npm i nodemailer
```
```sh
npm i path
```
```sh
npm i winston
```## Project Setup
```sh
npm install
```### Compile and Hot-Reload for Development
```sh
npm run dev
```### Compile and Minify for Production
```sh
npm run build
```### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
```sh
npm run test:e2e:dev
```This runs the end-to-end tests against the Vite development server.
It is much faster than the production build.But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
```sh
npm run build
npm run test:e2e
```### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```