This is my portfolio page. It is built with Next.js and Tailwind CSS. Here is a link to the live site.
Two methods for spinning up the development server are provided below. The first method uses Docker and the second method uses Node.js.
docker-compose run app npm install
docker-compose up
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Build with Docker:
docker-compose run app npm run build
Build with Node.js:
npm run build
The static build will be located in the build
directory.
Deployment is done with GitHub Actions. The workflow is located in .github/workflows/pages.yml
. The workflow will build the site and deploy the static site to GH Pages. Triggered by pushing to the main
branch.