Welcome to my Portfolio Website, a personal space where I share my journey as a developer, showcase the projects I'm passionate about, and demonstrate the skills I've cultivated along the way. Built with modern web technologies, this site reflects my commitment to creating fast, elegant, and user-friendly experiences. Whether you're here to explore my work, learn about my approach to development, or connect with me, I hope you find something that resonates with you.
$ pnpm install$ cp .env.example .env.dev$ docker compose --env-file .env.dev -f docker-compose.dev.yaml up --build
# or
$ docker compose --env-file .env.dev -f docker-compose.dev.yaml up$ cp .env.example .env.prodNote: Make sure to change the
HOSTNAMEto0.0.0.0in your.env.prodfile to allow the application to accept connections from outside the container.
$ docker compose --env-file .env.prod -f docker-compose.prod.yaml up -d --build
# or
$ docker compose --env-file .env.prod -f docker-compose.prod.yaml up -d