Skip to content

FaZeRs/portfolio-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Portfolio

License: MIT Build Badge Tests Badge Quality Gate Status Coverage Code Smells

Repository Info
portfolio-client Frontend
portfolio-api Rest API
portfolio-server Docker Environment

Features

Usage

Development

Create a .env file from the template .env.template file.

cp .env.template .env

Run and visit http://localhost:3333

pnpm dev

Build

To build the App, run

pnpm build

And you will see the generated file in dist that ready to be served.

Docker Production Build

First, build the portfolio image by opening the terminal in the project's root directory.

docker buildx build . -t portfolio-client:latest

Run the image and specify port mapping with the -p flag.

docker run --rm -it -p 8080:80 portfolio-client:latest