Skip to content
Draft
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 0 additions & 22 deletions .github/workflows/get-literature-zotero.yml

This file was deleted.

50 changes: 46 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
_site/
.sass-cache/
# Dependencies
node_modules
__pycache__
venv
.venv

# Build files
build
site

# Distribution files
dist
mkdocs_material.egg-info

# Caches and logs
*.cpuprofile
*.log
*.tsbuildinfo
.cache
.eslintcache
__pycache__

# Examples
example
example.zip

# -----------------------------------------------------------------------------
# General
# -----------------------------------------------------------------------------

# Never ignore .gitkeep files
!**/.gitkeep

# macOS internals
.DS_Store
.jekyll-cache/
.jekyll-metadata

# Temporary files
TODO
tmp

# Temporary folder
temp_dir/
venv/

# IDEs & Editors
.idea
*~
14 changes: 0 additions & 14 deletions Gemfile

This file was deleted.

106 changes: 0 additions & 106 deletions Gemfile.lock

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

108 changes: 0 additions & 108 deletions README.md

This file was deleted.

56 changes: 56 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Guide to run this documentation locally

## 1. Create a Virtual Environment

Run the following command in your project directory:

```bash
python -m venv venv
```

This will create a folder named **`venv`** containing the virtual environment.

---

## 2. Activate the Virtual Environment

To start using the virtual environment:

* **On macOS/Linux:**

```bash
source venv/bin/activate
```

* **On Windows (Git Bash):**

```powershell
source venv/Scripts/activate
```

---

## 3. Install Dependencies

If you have a `requirements.txt` file in your project:

```bash
pip install -r requirements.txt
```

---

## 4. Serve the Mkdocs locally

```
mkdocs serve
```
This will start the mkdocs server

## 5 ( Optional ). Deactivate the Virtual Environment

When finished working, you can exit the environment with:

```bash
deactivate
```
Loading