A collection of technical articles built with MkDocs and Material theme.
- Clone this repository
- Create and activate a virtual environment:
python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
Run the local development server:
mkdocs serveVisit http://127.0.0.1:8000 to preview your site.
- Create a new Markdown file in
docs/articles/ - Add it to the navigation in
mkdocs.yml(optional) - Write your content using Markdown
This site automatically deploys to GitHub Pages when you push to the main branch.
Visit your site at: https://akeed.github.io/articles/
.
├── docs/ # Documentation source
│ ├── index.md # Homepage
│ └── articles/ # Articles directory
├── mkdocs.yml # MkDocs configuration
├── requirements.txt # Python dependencies
└── .github/
└── workflows/
└── deploy.yml # GitHub Actions workflow
MIT