Skip to content

CERT-EDF/carbon

Carbon

Status Powered By: EDF License: MIT

Minimalist Collaborative Digital Logbook


Demo

Introduction

Carbon is a minimalist and versatile digital logbook designed for collaboration in real-time, where you can capture and organize key moments, tasks, communications, and more.

Inspired by the concept of radiocarbon dating (Carbon-14), Carbon offers a way to track the evolution whether you're managing a project, tracking actions or navigating through a crisis.


Getting Started

Note

Carbon is part of the CERT-EDF/fusion framework. This section will guide you for the standalone usage.

Deployment is designed to be simple using Docker.

export GIT_TAG="$(git describe --tags)"
docker compose up -d

Basic HTTP example using Nginx:

server {
    listen 80;
    server_name carbon.domain.lan;

    access_log  /var/log/nginx/carbon.access.log;
    error_log  /var/log/nginx/carbon.error.log;

    proxy_http_version 1.1;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;

    location /api {
      proxy_pass http://127.0.0.1:8111;
      client_max_body_size 4G;
      proxy_buffering off;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      proxy_set_header Host $host;
    }

    location / {
      proxy_pass http://127.0.0.1:8121;
    }
  }

Configuration

Refer to the configuration documentation.


License

Distributed under the MIT License.


Contributing

Contributions are welcome, see CONTRIBUTING.md for more information.


Security

To report a (suspected) security issue, see SECURITY.md for more information.