Home

Awesome


title: Configuration

Repository configuration

The repository and the template rely on GitHub Actions to generate the website. You need to configure the repository to allow the actions to work properly.

Carefully follow this links to understand which keys you need to create

Mkdocs configuration

You need to configure the plugin and the mkdocs configuration for it to work properly.

You can find more information about creating the site using the Material Mkdocs Documentation.

[!Warning] Configuration is mandatory. Do not configure the template will lead to crash during build and errors.

There is two way to edit the template for creating the website :

Automatic configuration

  1. First go into SETTINGS
  1. Go into the Actions tabs
  2. Click on the Generate website workflow and Run workflow. A popup will appear, and fill the informations. Each informations corresponding to the mkdocs.yml configuration file. By default, the workflows will send you a pull requests, so you can review the generation before the merging. You can automatically merge with the last options.
  3. Go into the pull-request tab. Verify all files, and if it's okay for you, you can merge the PR.

Manual configuration

The configuration of mkdocs.yml is explained here.

  1. First, edit the mkdocs.yml files with editing:
  1. Create keys if you use Vercel /Netlify.
  2. Grab the .env and deploy.yml corresponding to your methods of deployment:
    • .env must be placed at .github/
    • deploy.yml must be placed at .github/workflows/
  3. For Vercel or Netlify ONLY, create a requirements_actions.txt file at the root of your repository, and add the following lines:
    obsidiantools==0.10.0
    pyvis==0.3.1
    
  4. For Netlify ONLY : Create a runtime.txt file with 3.8 in it.
  5. Create the Github Personal Access Token and register it as a secrets (see the automatic configuration for this).

Optional configuration

To edit the logo and favicon, first put the chosen files in the assets/logo directory, and then change logo and favicon:

  1. logo: assets/meta/logo_name.png
  2. favicon: assets/meta/favicon.png
  3. To properly work with SEO, also edit the extra with SEO: 'assets/meta/LOGO_SEO.png'

You can also customize:

Check the documentation for more information

You don't need to touch anything in features or markdown_extensions.

Extra configuration

The last part of the mkdocs.yml is a configuration for the hooks and the template Jinja displaying the list of articles (blog_list.html).

There are also :

Blog list (article listing)

The list of articles is configured by the key blog_list and can take the following parameters :

Hooks

This part contains the configuration of hooks, short python scripts that allow to patch some Obsidian parts incompatible with Mkdocs.

You can configure :