Skip to main content

Installation

DependencyAtlas uses Julia's package app support, so this path requires Julia 1.12 or newer.

Install the app entrypoint directly from the repository URL:

using Pkg
Apps.add(PackageSpec(url="https://codeberg.org/karei/DependencyAtlas.jl.git"))

This installs command-line launchers without requiring a local checkout.

Then start DependencyAtlas:

depatlas --help
depatlas
DependencyAtlas

Open the app at http://127.0.0.1:8099.

To update the installed app later:

using Pkg
Apps.update("DependencyAtlas")
Other installation methods

Install as a normal package from the repository URL

Use this path if you prefer to start the backend from the Julia REPL instead of using the depatlas command.

] add https://codeberg.org/karei/DependencyAtlas.jl.git
using DependencyAtlas
DependencyAtlas.serve(static=true)

Then open the app at http://127.0.0.1:8099.

To update the package later:

] up DependencyAtlas

Install from the Julia registry

The package is available in the Julia registry, but the registry version may lag behind the latest version of the repository.

] add DependencyAtlas
using DependencyAtlas
DependencyAtlas.serve(static=true)

Then open the app at http://127.0.0.1:8099.

At the moment, package updates for repositories hosted outside GitHub and GitLab do not go through the standard auto-merge release flow, so registry updates for this package may take longer to appear. If you want the latest version, the repository-URL installation path above is recommended.

If you want to run the frontend development server yourself, see Frontend Development Server.