# lektor **Repository Path**: mirrors_mkj/lektor ## Basic Information - **Project Name**: lektor - **Description**: The lektor static file content management system - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Lektor [![PyPI version](https://badge.fury.io/py/Lektor.svg)](https://badge.fury.io/py/Lektor) [![Join the chat at https://gitter.im/lektor/lektor](https://badges.gitter.im/lektor/lektor.svg)](https://gitter.im/lektor/lektor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Lektor is a static website generator. It builds out an entire project from static files into many individual HTML pages and has a built-in admin UI and minimal desktop app. To see how it works look at the ``example`` folder which contains a very basic project to get started. For a more complete website look at [lektor/lektor-website](https://github.com/lektor/lektor-website) which contains the sourcecode for the official lektor website. ## How do I use this? For installation instructions head to the official documentation: * [Installation](https://www.getlektor.com/docs/installation/) * [Quickstart](https://www.getlektor.com/docs/quickstart/) ## Want to develop on Lektor? This gets you started: ``` $ git clone https://github.com/lektor/lektor $ cd lektor $ virtualenv venv $ . venv/bin/activate $ pip install --editable . $ make build-js $ export LEKTOR_DEV=1 $ lektor quickstart --path dev-example $ lektor --project dev-example server ```