Add secrets.template and update README with instructions
This commit is contained in:
parent
1c8e50a24b
commit
1b7ded47b8
3 changed files with 9 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
|||
.mypy_cache/
|
||||
__pycache__/
|
||||
process_list.txt
|
||||
secrets
|
||||
|
|
|
@ -14,7 +14,11 @@ or
|
|||
$ sudo apt install python3-pip
|
||||
```
|
||||
|
||||
Then run `./install.py` with needed flags (`./install.py -h` is your friend).
|
||||
The authentication details are stored in `secrets`. Therefore, you have a template `secrets.template` that you need to copy:
|
||||
```sh
|
||||
$ cp secrets.template secrets
|
||||
```
|
||||
Modify the resulting file, and then run `./install.py` with needed flags (`./install.py -h` is your friend).
|
||||
|
||||
|
||||
# About the files in the repo
|
||||
|
|
3
secrets.template
Normal file
3
secrets.template
Normal file
|
@ -0,0 +1,3 @@
|
|||
# secrets - is sourced by some commands - this is a template
|
||||
|
||||
SETUP_COCKPIT_EMAIL='john@doe.com'
|
Loading…
Add table
Reference in a new issue