certmate

(★ 1,392)

Self-hosted certificate lifecycle management: issue, renew, discover, inventory and deploy TLS certificates across your infrastructure

  • .airgap.yml
  • .dockerignore
  • .env.example
  • .flake8
  • .gitignore
  • app.py
  • build-docker.sh
  • build-multiplatform.sh
  • certmate.service
  • certmate_logo.png
  • CODE_OF_CONDUCT.md
  • codecov.yml
  • conftest.py
  • CONTRIBUTING.md
  • debug-docker.sh
  • docker-compose.yml
  • Dockerfile
  • LICENSE
  • licensing.pdf
  • Makefile
  • nginx.conf.example
  • package-lock.json
  • package.json
  • pytest.ini
  • quick_test.sh
  • README.dockerhub.md
  • README.md
  • RELEASE_NOTES.md
  • requirements-aws-storage.txt
  • requirements-aws.txt
  • requirements-azure-storage.txt
  • requirements-azure.txt
  • requirements-extended.txt
  • requirements-gcp.txt
  • requirements-infisical-storage.txt
  • requirements-minimal.txt
  • requirements-storage-all.txt
  • requirements-test.txt
  • requirements-vault-storage.txt
  • requirements.txt
  • run-docker.sh
  • run-tests.sh
  • screenshot_1.png
  • SECURITY.md
  • setup.sh
  • start-certmate.sh
  • start.sh
  • tailwind.config.js
  • test-multiplatform.sh

🚀 Installation Guide

1. Get the code
git clone https://github.com/fabriziosalmi/certmate

Downloads the entire project code from GitHub to your computer.

cd certmate

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Python 3 Python is required to use pip.
  • APT (Debian/Ubuntu 계열) Built into Debian/Ubuntu-based Linux distributions.
pip install certmate-cli

Installs the package published on PyPI directly — no need to clone the source.

sudo apt install python3 python3-pip python3-venv certbot openssl

Installs directly from the APT package repository (Debian/Ubuntu-based).

After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker-compose up -d

Runs the command against the services defined in the compose file.

docker-compose ps

Runs the command against the services defined in the compose file.

docker-compose logs -f certmate

Runs the command against the services defined in the compose file.

docker run --platform linux/arm64 -d --name certmate --env-file .env -p 127.0.0.1:8000:8000 fabriziosalmi/certmate:latest

Runs the built image as an actual container.

docker-compose.yml # Docker Compose configuration

Runs the command against the services defined in the compose file.

Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

4. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
cd mcp && npm install

Moves into the project folder you just downloaded.

After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

5. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install certmate-cli

Installs the package published on PyPI directly — no need to clone the source.

python3 -m venv certmate-env

Runs the Python script (or module).

pip install -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

sudo apt install python3 python3-pip python3-venv certbot openssl

Installs directly from the APT package repository (Debian/Ubuntu-based).

sudo pip3 install -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

6. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make lint

Compiles the code based on the generated build configuration to produce an executable.

make format

Compiles the code based on the generated build configuration to produce an executable.

make security

Compiles the code based on the generated build configuration to produce an executable.

If it finishes without errors, it worked. Try running the generated executable directly.

Pulled directly from this repo's README.

// repository documentation