blob: ca3a065c1592388056d39b58c0474985c4d52936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  | 
---
title: "Reference: authelia-scripts"
description: "This section covers the authelia-scripts tool."
lead: "This section covers the authelia-scripts tool."
date: 2022-05-15T13:52:27+10:00
draft: false
images: []
menu:
  contributing:
    parent: "development"
weight: 290
toc: true
aliases:
  - /docs/contributing/authelia-scripts.html
---
__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](../../reference/cli/authelia-scripts/authelia-scripts.md).
## Examples
Those scripts become available after sourcing the `bootstrap.sh` script with:
```bash
source bootstrap.sh
```
Then, you can access the scripts usage by running the following command:
```bash
authelia-scripts --help
```
For instance, you can build __Authelia__ ([go] binary and [React] frontend) with:
```bash
authelia-scripts build
```
Or build the official [Docker] image with:
```bash
authelia-scripts docker build
```
Or start the *Standalone* suite with:
```bash
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:
```bash
authelia-scripts --help
```
```bash
authelia-scripts build --help
```
  |