Add recommended vscode extensions, Add hint for gem install, Add .gitignore, Remove field left over from 9cc7023
This commit is contained in:
parent
96d4c79bed
commit
ec66c18c02
|
@ -0,0 +1,6 @@
|
||||||
|
.venv/
|
||||||
|
*.code-workspace
|
||||||
|
*password*
|
||||||
|
host_vars/*/
|
||||||
|
docs/*.html
|
||||||
|
docs/*.pdf
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"redhat.ansible",
|
||||||
|
"asciidoctor.asciidoctor-vscode",
|
||||||
|
"streetsidesoftware.code-spell-checker",
|
||||||
|
"mhutchie.git-graph",
|
||||||
|
"esbenp.prettier-vscode",
|
||||||
|
"redhat.vscode-yaml"
|
||||||
|
]
|
||||||
|
}
|
|
@ -34,7 +34,7 @@ Requirements
|
||||||
```
|
```
|
||||||
- The `asciidoctor-pdf` (asciidoctor + pdf conversion), `rouge` (syntax highlighting) and `rghost` (pdf optimization) gem
|
- The `asciidoctor-pdf` (asciidoctor + pdf conversion), `rouge` (syntax highlighting) and `rghost` (pdf optimization) gem
|
||||||
```bash
|
```bash
|
||||||
gem install asciidoctor-pdf rouge rghost
|
gem install asciidoctor-pdf rouge rghost # you might have to run with 'sudo'
|
||||||
```
|
```
|
||||||
|
|
||||||
Then compile the guide:
|
Then compile the guide:
|
||||||
|
|
|
@ -27,7 +27,6 @@ qgis_repo:
|
||||||
postgresql_server:
|
postgresql_server:
|
||||||
port: 5432
|
port: 5432
|
||||||
user: # TODO: add option to change?
|
user: # TODO: add option to change?
|
||||||
password: # TODO: link to vault?
|
|
||||||
|
|
||||||
qgis_server:
|
qgis_server:
|
||||||
full_version: "1:{{ _qgis_server_version }}+17bookworm"
|
full_version: "1:{{ _qgis_server_version }}+17bookworm"
|
||||||
|
|
Loading…
Reference in New Issue