Nathan Schneider 11c6212fb7 Initial commit
2021-03-14 16:34:32 -06:00

1.3 KiB

HedgeDoc App

About

HedgeDoc is the best platform to write and share markdown.

!!! note "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
    }