Skip to content

KevinRobben/RgeTroubleshootingDocs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MkDocs Template

This project serves as a quick-start project framework for rapidly deploying the ReadTheDocs project documentation software using the MkDocs engine. In this instance, the MkDocs project 'project' has already been deployed for you. You can continue with your deployment by editing the *.md files within the /project directory.

Table of Contents

ReadTheDocs is an open-source ...

The MkDocs engine is an open-source ...

To use the existing /project folder, skip step 5 and proceed to step 6.

  1. Clone this repository and nagivate into it.

  2. Delete the .git directory and initialize a new git project for your docs.

rm -rf .git
git init
  1. Create and activate a new Anaconda environment for your project.
conda create -n docs-project --python=3.8
conda activate docs-project
  1. Install the prerequisite software and check the MkDocs version.
pip3 install -r requirements.txt
mkdocs --version
  1. (optional) Delete the existing /project folder and initialize a new MkDocs project.
rm -rf project
mkdocs new project
  1. Within the /project folder is a configuration file called /project/mkdocs.yml as well as a folder /project/docs containing the documentation pages. Edit mkdocs.yml to change the look and layout of your documentation platform. Edit the files under the docs directory with the documentation content.

  2. Run the local server to view your docs when you are ready.

mkdocs serve
  1. Connect to localhost:8000 to preview your docs.

  2. You can continue to edit the docs and MkDocs will automatically rebuild the site. Refresh the page to see your changes.

  3. When you are ready to deploy the docs, build the static pages using MkDocs. This command will create a folder called /project/site with the HTML and CSS files to host the docs.

mkdocs build

Written by Austin Dial. Maintained by Seaborn.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published