File tree Expand file tree Collapse file tree 1 file changed +35
-3
lines changed Expand file tree Collapse file tree 1 file changed +35
-3
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,40 @@ Implemented mainly to make Letsencrypt DNS01 Challenge easier.
9
9
Tested with Python 3.11 but * should* work with any other current version of python.
10
10
11
11
### Usage
12
-
13
- For now there is a configuration file you need to create und *** conf/config.toml*** with your API Key and HTTP Bearer
12
+ For now there is a configuration file you need to create under *** conf/config.toml*** with your API Key and HTTP Bearer
14
13
Token.
14
+ You can also supply this information on execution of the script via the CLI.
15
+
16
+ It is preferred to use a virtual environment!
17
+ Be sure to install all requirements before running the script!
18
+
19
+
20
+ To run the letsencrypt script use:
21
+ ```
22
+ python main.py
23
+ ```
24
+ or:
25
+ ```
26
+ python main.py -l
27
+ ```
28
+ <br >
29
+
30
+ To check if an edit is completed use:
31
+
32
+ ```
33
+ python main.py -c
34
+ ```
35
+ <br >
36
+
37
+ For the help function use:
38
+
39
+ ```
40
+ python main.py -h
41
+ ```
42
+ <br >
43
+
44
+ You can also run both the check and letsencrypt script, whereas the check will execute before letsencrypt, using:
15
45
16
- Then just run the prototype script to get some basic info about your CSC Tenant and the domain you queried.
46
+ ```
47
+ python main.py -c -l
48
+ ```
You can’t perform that action at this time.
0 commit comments