Forrest logo
back to the satis tool

satis:tldr:636ec

satis: Add a VCS repository to the Satis configuration.
$ satis add ${repository_url}
try on your machine

The command "satis add ${repository_url}" is used to add a new repository URL to Satis.

Satis is a simple package repository generator that allows you to create your own Composer repository. Composer is a dependency manager for PHP applications.

To use Satis, you need to have a configuration file (satis.json) that defines the packages you want to include in your repository and the repositories where they can be found.

When you run the "satis add" command, it adds a new repository URL to your Satis configuration. The "${repository_url}" is a placeholder that should be replaced with the actual URL of the repository you want to add.

For example, if you have a package hosted on GitHub, you would run the "satis add" command with the GitHub repository URL as the parameter, like this: "satis add https://github.com/username/repository".

This command updates your Satis configuration file to include the new repository URL and any packages found in that repository will be included in your generated Composer repository.

After adding the repository, you would typically run "satis build" to regenerate the Composer repository with the updated packages and repository information.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the satis tool