Skip to content

Commit

Permalink
created basic documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
attila-balint-kul committed Nov 30, 2023
1 parent a12d301 commit 74cb9af
Show file tree
Hide file tree
Showing 8 changed files with 84 additions and 19 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- docs/init

permissions:
contents: write
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI

on: push
on:
push:
branches:
- main

jobs:
build-n-publish:
Expand Down
3 changes: 3 additions & 0 deletions docs/docs/getting-started.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Getting Started

...
24 changes: 9 additions & 15 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
# Welcome to MkDocs
---
tags:
- example
hide:
- tags
- navigation
---

For full documentation visit [mkdocs.org](https://www.mkdocs.org).
# Home

## Commands

* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
This page is under construction.
5 changes: 5 additions & 0 deletions docs/docs/tags.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Tags

Following is a list of relevant tags:

[TAGS]
57 changes: 55 additions & 2 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,56 @@
site_name: My Docs
site_name: EnfoBench
site_description: EnfoBench is a benchmarking toolkit for energy forecasting models.
repo_url: https://github.com/attila-balint-kul/energy-forecast-benchmark-toolkit
repo_name: enfobench
edit_uri: ''
copyright: Copyright © 2022 - 2023 Attila Balint
theme:
name: material
language: en
name: material
custom_dir: overrides
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode

# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
logo: bootstrap/highlighter
repo: fontawesome/brands/github
tag:
example: bootstrap/journal-bookmark
features:
- navigation.indexes
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- toc.follow
plugins:
- tags:
tags_file: tags.md
- search
extra:
homepage: https://attila-balint-kul.github.io/energy-forecast-benchmark-toolkit
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
social:
- icon: fontawesome/brands/github
link: https://github.com/attila-balint-kul/energy-forecast-benchmark-toolkit
tags:
Examples: example
nav:
- Home: index.md
- Getting Started: getting-started.md
3 changes: 3 additions & 0 deletions docs/overrides/.icons/bootstrap/highlighter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions docs/overrides/.icons/bootstrap/journal-bookmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 74cb9af

Please sign in to comment.