Welcome to my portfolio code on GitHub! I'm thrilled to share my work with you and the community. Please remember to give proper attribution when using my code, as it helps others discover and benefit from my work.
This portfolio is a Next.js project, initiated with create-next-app
.
You can deploy the portfolio using Docker:
docker run -d --name portfolio -p 3000:3000 Bengo237/portfolio:1.0
Or without Docker by installing dependencies and running the production server:
npm install --legacy-peer-deps
npm run build
npm run start
For development, install dependencies and run the development server:
npm install --legacy-peer-deps
npm run dev
Then, open http://localhost:3000 in your browser. You can edit the page by modifying pages/index.js
. API routes can be accessed on http://localhost:3000/api/hello and edited in pages/api/hello.js
.
For more about Next.js, check out the Next.js Documentation and Learn Next.js.
This project is inspired by Glaysonvisgueira's Project.