Skip to content

nshkrdotcom/coolify_ex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoolifyEx

CoolifyEx logo

Release 0.2.0 HexDocs MIT License GitHub

CoolifyEx is an Elixir library and set of Mix tasks for triggering an existing Coolify application, waiting for the deployment to reach a terminal state, inspecting both deployment logs and runtime application logs, and then running smoke checks against the live app. It does not create applications in Coolify, replace your Dockerfile or build strategy, or act as a CI/CD system; the main use case is an operator-driven deploy from a trusted workstation or remote server that already has Git, Mix, and the right credentials.

How It Fits in Your Stack

Your Git repository stays the source of truth. A local manifest tells CoolifyEx which Coolify application UUID to deploy, which branch must be current, which smoke checks to run, and which values to resolve from the environment. CoolifyEx can then push Git, call the Coolify API, poll deployment status, inspect runtime logs for the same app, and finally verify the live URL that Coolify is serving.

Git repo on trusted host
  |
  | load manifest + resolve {:env, "NAME"} tuples
  v
CoolifyEx (Mix task or library call)
  |
  | optional git push remote branch
  | start deployment via Coolify API
  v
Coolify deployment
  |
  | poll deployment UUID until success or failure
  v
Running application
  |
  | fetch runtime logs by manifest project
  v
Runtime log inspection
  |
  | GET/HEAD smoke checks
  v
Verification result

This flow keeps deployment intent in your repository while leaving the actual build and runtime environment under Coolify's control.

Prerequisites

  • A running Coolify instance that you can reach from the deployment machine.
  • An application that already exists in Coolify; CoolifyEx does not create it.
  • API access enabled in Coolify.
  • A Coolify API token with permission to start deployments.
  • The application UUID for each Coolify app you want to trigger.
  • Elixir ~> 1.18, Mix, Git, and curl on the machine that will run the Mix tasks.
  • Network access from that machine to the Coolify panel, the Git remote, and each public URL you plan to smoke-check.

Installation

Add coolify_ex to your dependencies:

def deps do
  [
    {:coolify_ex, "~> 0.2.0", runtime: false}
  ]
end

This adds CoolifyEx as an operator tool instead of a runtime application process, which matches how the library is used by Mix tasks and deploy scripts.

CoolifyEx targets Elixir ~> 1.18; its runtime dependencies are Req and Jason, and its dev/test dependencies are credo, dialyxir, ex_doc, and bypass.

Quick Start

  1. Enable API access in the Coolify UI.
# Coolify UI
# Settings -> Configuration -> Advanced
# Enable API access, then save the change.

This turns on the API endpoints that CoolifyEx calls during deploy and status checks.

  1. Create a token with deployment access.
# Coolify UI
# Keys & Tokens -> API Tokens
# Create a token that can start deployments, then copy it somewhere safe.

This gives the deployment machine a bearer token for the Coolify API.

  1. Copy the application UUID from Coolify.
# Coolify UI
# Open the application you want to deploy.
# Copy the application UUID that identifies this app in the API.

You need one UUID per manifest project entry.

  1. Add the dependency and fetch it locally.
def deps do
  [
    {:coolify_ex, "~> 0.2.0", runtime: false}
  ]
end

This makes the Mix tasks and library code available in your project.

mix deps.get

This installs CoolifyEx and its dependencies into the current project.

  1. Run the bootstrap script from the repository root.
./scripts/setup_remote.sh

This checks for git, curl, and mix, copies coolify.example.exs to .coolify_ex.exs if that file does not exist yet, runs mix deps.get, and then runs mix coolify.setup --config .coolify_ex.exs.

  1. Export the environment variables that the manifest will resolve.
export COOLIFY_BASE_URL="https://coolify.example.com" # replace this
export COOLIFY_TOKEN="coolify-api-token" # replace this
export COOLIFY_WEB_APP_UUID="00000000-0000-0000-0000-000000000000" # replace this

These values stay on the trusted machine and are read at manifest load time through {:env, "NAME"} tuples.

  1. Copy the shipped example manifest if you did not use the bootstrap script.
cp coolify.example.exs .coolify_ex.exs

This creates the default manifest file name that CoolifyEx will discover first.

  1. Edit the manifest with the real UUIDs, branch, and smoke-check URLs.
${EDITOR:-vi} .coolify_ex.exs

This is where you bind your local repository to one or more Coolify applications.

  1. Trigger the first deployment.
mix coolify.deploy

On success, the task prints Deployment finished: DEPLOYMENT_UUID and then Verification passed: PASSED/TOTAL checks unless you used --skip-verify.

  1. Inspect runtime logs for the deployed app.
mix coolify.app_logs --project web --lines 200

This fetches the current runtime log tail from Coolify's application logs API by resolving the manifest project entry to its app_uuid.

Example Manifest

%{
  # Present in the shipped example; the loader currently ignores this key.
  version: 1,
  # Coolify panel URL, resolved from the local shell environment.
  base_url: {:env, "COOLIFY_BASE_URL"},
  # Coolify API token, also resolved from the local shell environment.
  token: {:env, "COOLIFY_TOKEN"},
  # Project selected when you omit --project.
  default_project: :web,
  projects: %{
    web: %{
      # The Coolify application UUID for this project entry.
      app_uuid: {:env, "COOLIFY_WEB_APP_UUID"},
      # Branch that must be checked out locally before deploy unless you use --no-push.
      git_branch: "main",
      # Git remote used for the optional push step.
      git_remote: "origin",
      # Use "." for a top-level app or a relative child path for a monorepo app.
      project_path: ".",
      # Public URL used to expand smoke-check paths such as "/healthz".
      public_base_url: "https://example.com", # replace this
      smoke_checks: [
        # GET https://example.com/ and expect HTTP 200.
        %{name: "Landing page", url: "/", expected_status: 200},
        # GET https://example.com/healthz, expect HTTP 200, and require "ok" in the body.
        %{name: "Health", url: "/healthz", expected_status: 200, expected_body_contains: "ok"}
      ]
    }
  }
}

This is the shipped coolify.example.exs with inline comments describing how each field affects loading, deployment, and verification.

Mix Tasks At A Glance

Task What it does Example
mix coolify.setup Prints a local or remote-server checklist, checks for git, curl, and mix, and tries to load the manifest. mix coolify.setup --config .coolify_ex.exs
mix coolify.deploy Optionally pushes Git, starts a Coolify deployment, waits for completion, and optionally verifies smoke checks. mix coolify.deploy --project web --force
mix coolify.status Fetches one deployment by UUID and prints its status plus the Coolify logs URL when available. mix coolify.status DEPLOYMENT_UUID
mix coolify.logs Fetches one deployment by UUID and prints normalized log lines. mix coolify.logs DEPLOYMENT_UUID --tail 50
mix coolify.app_logs Fetches runtime logs for one manifest project and can poll for new lines. mix coolify.app_logs --project web --lines 200 --follow
mix coolify.verify Runs the manifest's smoke checks without starting a new deployment. mix coolify.verify --project web

Key Behaviors

  • Relative smoke-check URLs are expanded only when the URL starts with / and public_base_url is a string. Otherwise the URL is kept exactly as written.
  • mix coolify.deploy --no-push skips the Git push step but still loads the manifest, starts the deployment, waits for Coolify, and verifies unless you also pass --skip-verify.
  • mix coolify.app_logs resolves a manifest project to its app_uuid and calls Coolify's application-logs endpoint; --follow re-polls that endpoint and prints only newly observed lines.
  • project_path must point to an existing directory when the manifest loads, but Git pushes always happen from repo_root, which is the directory that contains the manifest.
  • If the Coolify deployment succeeds and a smoke check fails afterward, mix coolify.deploy raises Verification failed with N failing checks; it does not roll back or mark the deployment itself as failed in Coolify.
  • Manifest loading is eager. If any {:env, "NAME"} tuple resolves to nil for a required field, the whole load fails before any task-specific work begins.

Documentation

License

CoolifyEx is released under the MIT License. See LICENSE.

About

Generic Elixir tooling for triggering, monitoring, and verifying Coolify deployments from a workstation or remote server, with support for top-level Mix apps and monorepos.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors