My first ever website portfolio with design inspiration from https://v4.brittanychiang.com. Hosted in my own old laptop transformed server powered by Cloudflare and Nginx.
- React.js
- Typescript
- Styled Components
- Framer
- ESLint + Airbnb
- Docker
- Cloudflare and Nginx (deployment)
Color | Hex |
---|---|
Prussian | #003152 |
Slate | #abb9c4 |
Light Slate | #d2d7dc |
Lightest Slate | #e3ebec |
Electric | #79f6fc |
Air Force | #588bae |
Dark Navy | #001429 |
- Clone repository
git clone https://github.com/Bernz322/my-portfolio.git
cd my-portfolio
- Build the image
docker build -t <your-image-name> --target development .
- Run the image
docker run -d --name <your-container-name> -p 3000:3000 <your-image-name>
-
Build the image
docker build -t <your-image-name> --target production .
-
Run the image
docker run -d --name <your-container-name> -p 80:80 <your-image-name>