Skip to main content

Self-hostable Obsidian Publish

Project description

Markopolis

Hi, My name is Rishikanth. I built Markopolis, a web app and API server designed to serve Markdown files. It allows you to share Markdown notes as websites and interact with and manipulate your Markdown files using an API. Simply install Markopolis, point it to a directory holding all your Markdown files, and the library takes care of everything else. Markopolis is open-source and free and is released under the MIT-License. Check out the github repository.

TLDR: Markopolis is a self-hostable alternative to Obsidian Publish

Why I Built This?

I built Markopolis because I wanted a web server that primarily uses plain text Markdown files for note-taking. As much as I love the customizability that Obsidian offers, I found it too distracting and easy to get lost in optimizing and customizing. I wanted a self-hosted solution for sharing and viewing my Markdown notes online, similar to Obsidian Publish, but without getting locked into the Obsidian ecosystem. After failing to find an existing solution, I decided to build my own, and thus Markopolis was born.

Features

  • Simple Deployment: Extremely easy to deploy, configure, and use.
  • REST API Interface: Provides a REST API to interact with different Markdown elements in your notes.
  • Customizable UI: Supports "bring your own user interface" by using Markopolis as a backend.
  • Obsidian Markdown Flavor: Stays close to the Obsidian Markdown flavor and supports backlinks, todos, and LaTeX equations.
  • Instant Rendering: Uses a single command to push Markdown notes to the server and instantly renders them as simple webpages.
  • Full Text Search: Implements full text search.
  • Dark and Light Modes: Supports both dark and light modes.
  • Code Formatting and Todos: Supports code formatting and todos.
  • Low Maintenance: Requires very little to no maintenance.
  • Docker Support: Comes as a deployable Docker image.
  • Local Installation: Can also be installed locally.
  • API Documentation: Inbuilt API documentation generated using FastAPI.

Demo

Check out docs website for a live demo, which showcases a small collection of Markdown notes to highlight the essential features. Check out the Installation section for instructions on how to deploy and configure Markopolis.

Installation

Installation has two parts. Server deployment and local setup. The server deployment is for deploying and setting up the API server and front-end. The local setup is for pushing markdown files to the server for publishing.

Deployment using Docker

Use the provided docker-compose: Fill up the environment values. Make sure to generate and add a secure API_KEY. Allocate persistent storage for the Markdown files.

Docker Compose

version: '3.8'

services:
  markopolis:
    image: ghcr.io/rishikanthc/markopolis:0.3.1
    ports:
      - "8080:8080"
    environment:
      - MARKOPOLIS_DOMAIN="https://your-domain.com"
      - MARKOPOLIS_TITLE="Awesome Notes"
      - MARKOPOLIS_MD_PATH=/app/markdown
      - MARKOPOLIS_API_KEY=<really long random alpha-numeric string>
    volumes:
      - markopolis_data:/app/markdown
    restart: unless-stopped

volumes:
  markopolis_data:
    driver: local

Deploy using Docker:

docker-compose up -d

Local Installation

Requirements: Python 3.12

Install:

pip install markopolis

Configuration:

Create a config file as a YAML file in any location. Set the MARKOPOLIS_CONFIG_PATH environment variable to point to the location of the config file. The config file should specify the domain of the deployment including the protocol and the api key. The api key should be the same as what you used for the deployment:

default:
  domain: "https://your-domain.com"
  api_key: <really long random alpha-numeric string>

I recommend using a python virtual environment for the local installation.

Usage

On the first run, since, there are no markdown files to load, the page will throw an error. You can verify if installation was successful by navigating to the API documentation which is generated automatically at https://your-domain.com/docs. This should load up the SwaggerUI for the API endpoints exposed.

Publishing files

All markdown files you want to publish should have publish: true in the frontmatter. Navigate to the directory containing your markdown notes and simply run consume. This command will scan all markdown files in your folder and upload it to the server. If the file already exists on the server, then it checks if there are any changes. If there are no changes, the file is skipped. If there are changes then it is overwritten.

Home Page

The home page content is loaded from a file called home.md.

Roadmap

In no particular order, here are some of the features that are planned:

  • Support for Obsidian callouts.
  • Mermaid diagrams.
  • Editor-agnostic cross-device syncing.
  • Delete file API interface.
  • Graph view.
  • Daily notes.
  • Private pages to hide specific pages under a password.
  • Support for integrating Obsidian Publish and syncing.
  • Support for rendering Markdown tables.
  • Support for images.
  • Better tag handling (view tags as links, collect pages by tags, a page for viewing all tags).
  • Support for DataView queries.

Thank you for considering Markopolis for your Markdown note-sharing needs! If you like the project considering starring the repository.

Contributing

Contributions are most welcome. I am looking to add several features to this project and would appreciate any and all help I can get. Check out the Roadmap for a list of features I currently plan to implement.

Below are few things I need help with:

  • Unit testing
  • User feedback
  • Obsidian plugin development
  • Figuring out the best strategy to implement Sync
  • Front-end improvements

Please feel free to connect with me on github by opening an issue or drop an email. Any and all help is appreciated :)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

markopolis-0.3.3.tar.gz (7.5 MB view details)

Uploaded Source

Built Distribution

markopolis-0.3.3-py3-none-any.whl (7.6 MB view details)

Uploaded Python 3

File details

Details for the file markopolis-0.3.3.tar.gz.

File metadata

  • Download URL: markopolis-0.3.3.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.2 Darwin/23.5.0

File hashes

Hashes for markopolis-0.3.3.tar.gz
Algorithm Hash digest
SHA256 cc5f925cec2deeb3c816597e6d86b8f9765eaab081859b07d485f8fd9aaf0d6b
MD5 2f7a0ccc7f045e77d41a9794bef3a3d8
BLAKE2b-256 62a6e31ea1a60967b4f7bb10ec11df0f011be62c1450c56f138d11a76c13fcb3

See more details on using hashes here.

File details

Details for the file markopolis-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: markopolis-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.2 Darwin/23.5.0

File hashes

Hashes for markopolis-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e07f19f31faaaf81b97b05cb9c317f6e45a53f91dc8e00a83066ceb8ce97f269
MD5 74bf68176aad5f206510c159bd129ad5
BLAKE2b-256 d3d1a42ab686f606bd503bd0a63340835073203ba41d8328411ffcd3c51ecd4c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page