Skip to content

OSIPI/mkdocs-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Guide to run this documentation locally

1. Create a Virtual Environment

Run the following command in your project directory:

python -m venv venv

This will create a folder named venv containing the virtual environment.


2. Activate the Virtual Environment

To start using the virtual environment:

  • On macOS/Linux:

    source venv/bin/activate
  • On Windows (Git Bash):

    source venv/Scripts/activate

3. Install Dependencies

If you have a requirements.txt file in your project:

pip install -r requirements.txt

4. Serve the Mkdocs locally

mkdocs serve

This will start the mkdocs server

5 ( Optional ). Deactivate the Virtual Environment

When finished working, you can exit the environment with:

deactivate

About

This repo hosts a template for mkdocs that users can use to quick start a documented project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published