This is my personal portfolio website. It is built using Svelte and Tailwind CSS. The website is being hosted by Github Pages and is being routed too by AWS Route53.
The website is automatically deployed using GitHub Actions. The website is automatically formatted using Prettier.
To get a local copy up and running follow these simple steps.
Clone the repository:
git clone <repo-url>
Install the dependencies:
npm install --include=dev
Start the development server:
npm run dev
Open the website in a browser:
http://localhost:5173
Build the Docker image:
docker build -t portfolio .
Run the Docker container:
docker run -p 5173:80 portfolio
Open the website in a browser:
http://localhost:5173
The website is automatically formatted using Prettier. The configuration for Prettier is stored in the .prettierrc
file.
To format the website manually, run the following command:
npm run format
To check if the website is formatted correctly, run the following command:
npm run format:check
This project is licensed under the MIT License - see the LICENSE file for details.