Skip to content

Kodular/Documentation

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Website GitHub Workflow Status Requires.io Codacy grade


Kodular Docs

The documentation source for Kodular lives is here.

The documentation rendered using MkDocs. This uses the Material theme for MkDocs.

Setting up

  1. Make sure you have Python and virtualenv installed on your system.

  2. Create a virtualenv

virtualenv kodular-docs-venv
  1. Activate your virtualenv:
  • On Linux : source kodular-docs-venv/bin/activate
  • On Windows : source kodular-docs-venv/Scripts/activate
  1. Install the dependencies using pip:
pip install -r requirements.txt
  1. You can preview the docs locally using the command:
mkdocs serve

If you run into this error,

  MkDocs encountered as error parsing the configuration file: while constructing a Python object
  cannot find module 'macros.blocks_macros' (No module named 'macros.blocks_macros')
  in "/media/ghostfox/NewVolume1/documentation/mkdocs.yml", line 83, column 11

then make sure that the root directory of the repo is present in the PYTHONPATH $ export PYTHONPATH=$PYTHONPATH:$PWD (replace $PWD with the root directory of the repo)