TeeWallz / jezyk-polski

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guide: https://mkdocs.peaceiris.com/

Install all packages

pipenv sync  # Installs all packages specified in Pipfile.lock.

Install new package

pipenv install PACKAGE
pipenv lock
pipenv lock -r > requirements.txt

Run MkDocs

pipenv shell  # Spawns a shell within the virtualenv.
mkdocs serve

Or, run mkdocs with pipenv run

pipenv run mkdocs serve

pipenv run

pipenv task are also defined by Pipfile

pipenv run version    # mkdocs --version
pipenv run help       # mkdocs --help
pipenv run inv serve  # inv serve
pipenv run serve      # mkdocs serve
pipenv run build      # mkdocs build
pipenv run deploy     # mkdocs gh-deploy

About

License:MIT License


Languages

Language:Python 100.0%