🙏🏽 Huge thanks to Stefan Gogov, the original creator of this project, for keeping it under GPLv3 licence, allowing me to copy, modify, and deploy the project for myself.
This fork has two new branches: trunk and prod. In the trunk branch, I have been trying to keep the original version as clean as possible while keeping the packages up-to-date and adding slight modifications in tooling and code cleanup. The prod branch, which is set as the default one, contains a personalised version of what's in the trunk branch.
So, if you want to fork from here and modify it, consider doing so on top of the trunk branch:
# After forking
git clone https://github.com/YOUR-USERNAME/YOUR-FORK.git
cd YOUR-FORK
# Add this remote as `upstream` and fetch the `trunk` branch
git remote add upstream https://github.com/maacpiash/portfolio.git
git fetch upstream trunk
# Create a new branch on top of `upstream/trunk`
git checkout -b NEW-BRANCH-NAME upstream/trunk
# After committing your work, push to your fork
git push -u origin NEW-BRANCH-NAMEThe original readme content follows.
This is a portfolio website built using Astro, a static site generator that delivers lightning-fast performance and embraces the JAMstack philosophy. The blog is built using the Astro starter kit
- Home
- About
- Projects
- Contact
If you'd like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your changes.
- Make your enhancements or additions.
- Submit a pull request, describing the changes you've made.
To run the project locally, you'll need Node.js and npm installed on your system. Follow these steps to get started:
- Clone this repository to your local machine.
- Install the project dependencies with
npm install. - Start the development server with
npm run dev. - Open your browser and visit http://localhost:3000 to see the project in action.
Inside of your Astro project, you'll find the following directories and files:
/
├── public/
│ └── ...
├── src/
│ ├── components/
│ │ └── ...
│ ├── layouts/
│ │ └── ...
│ └── pages/
│ └── ...
└── package.json
Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.
Any static assets, like images, can be placed in the public/ directory. These files will be copied into the final build.
If you come across any bugs, have suggestions for improvements, or want to request new features, please submit an issue in the GitHub repository. Your feedback is highly appreciated!
This project is licensed under the General Public License v3.0. See the LICENSE file for details.