authelia/docs/content/contributing/development/reference-authelia-scripts.md

1.6 KiB

title description summary date draft images weight toc aliases seo
Reference: authelia-scripts This section covers the authelia-scripts tool. This section covers the authelia-scripts tool. 2022-06-15T17:51:47+10:00 false
290 true
/docs/contributing/authelia-scripts.html
title description canonical noindex
false

Authelia comes with a set of dedicated scripts to perform a broad range of operations such as building the distributed version of Authelia, building the Docker image, running suites, testing the code, etc. This is a small reference guide for the command, the full guide can be found in the CLI Reference.

Examples

Those scripts become available after sourcing the bootstrap.sh script with:

source bootstrap.sh

Then, you can access the scripts usage by running the following command:

authelia-scripts --help

For instance, you can build Authelia ([go] binary and [React] frontend) with:

authelia-scripts build

Or build the official [Docker] image with:

authelia-scripts docker build

Or start the Standalone suite with:

authelia-scripts suites setup Standalone

Help

The authelia-scripts provides help using the --help or -h flags. Every command should provide some form of help when provided with either flag. Examples:

authelia-scripts --help
authelia-scripts build --help