Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.11 KB

File metadata and controls

53 lines (33 loc) · 1.11 KB

Pardus Linux Website

This repository contains the source code for the Pardus Linux website, built with MkDocs and Material for MkDocs.

Getting Started

Follow these instructions to set up the project locally on your machine.

Prerequisites

  • Python 3.x
  • Git

Installation

  1. Clone the repository

    git clone git@github.com:pardus/pardus.github.io.git
    cd pardus.github.io
  2. Create a virtual environment

    python3 -m venv venv
  3. Activate the virtual environment

    source venv/bin/activate
  4. Install dependencies

    pip install mkdocs-material mkdocs-material-extensions

Usage

To start the development server with live reload:

mkdocs serve --livereload

Open your browser and navigate to http://127.0.0.1:8000/. The site will automatically update as you modify the files.

Deployment

This project is configured to automatically deploy to GitHub Pages using GitHub Actions when changes are pushed to the main branch.