Edit page in Livemark
(2023-06-27 13:35)

Starting a Project

Start quickly with Livemark Project Github Template

Project is the most important concept in Livemark along side with Document. You create a project that contains one or more documents and optional configuration file.

Prepare

Consider you're starting a new project called my-project:

$ mkdir my-project
$ cd my-project

Create a virtual environment (optional):

$ python3 -m venv .python
$ source .python/bin/activate

Bootstrap

Livemark requires only a few steps from zero to a published project:

First of all, create:

Draft the main page (this step is required):

index.md

# My Project

It will be great here

Fill in your configuration file:

livemark.yaml

brand:
  text: My Project
site:
  favicon: assets/favicon.ico

Preview

Now we're ready to start a livereload server:

http://localhost:7000

$ livemark start