Skip to content

HedgeDoc App

About

HedgeDoc is the best platform to write and share markdown.

Impending rename

CodiMD is being renamed to HedgeDoc. This app package will be renamed accordingly.

Custom configuration

Use the File manager to place custom configuration under /app/data/config.json.

See HedgeDoc docs for configuration options reference.

Image uploads

By default, images are uploaded to the data directory of the app itself. To switch to another provider like MinIO, first configure minio to image uploads. Then, use the following configuration in /app/data/config.json:

    "imageUploadType": "minio",
    "s3bucket": "codimd-images",
    "minio": {
        "accessKey": "MINIO_ACCESS_KEY",
        "secretKey": "MINIO_SECRET_KEY",
        "endPoint": "minio.cloudrondomain.com",
        "secure": true,
        "port": 443
    }