File tree 1 file changed +25
-24
lines changed
content/docs/02.installation
1 file changed +25
-24
lines changed Original file line number Diff line number Diff line change @@ -81,30 +81,31 @@ Managing a large configuration via a single YAML string can be tedious. To make
81
81
First, define an environment variable:
82
82
83
83
``` bash
84
- export KESTRA_CONFIGURATION=" datasources:
85
- postgres:
86
- url: jdbc:postgresql://postgres:5432/kestra
87
- driverClassName: org.postgresql.Driver
88
- username: kestra
89
- password: k3str4
90
- kestra:
91
- server:
92
- basicAuth:
93
- enabled: false
94
- username: " [email protected] " # it must be a valid email address
95
- password: kestra
96
- repository:
97
- type: postgres
98
- storage:
99
- type: local
100
- local:
101
- basePath: " /app/storage"
102
- queue:
103
- type: postgres
104
- tasks:
105
- tmpDir:
106
- path: /tmp/kestra-wd/tmp
107
- url: http://localhost:8080/
84
+ export KESTRA_CONFIGURATION=$'
85
+ datasources:
86
+ postgres:
87
+ url: jdbc:postgresql://postgres:5432/kestra
88
+ driverClassName: org.postgresql.Driver
89
+ username: kestra
90
+ password: k3str4
91
+ kestra:
92
+ server:
93
+ basicAuth:
94
+ enabled: false
95
+ username: "[email protected] " # it must be a valid email address
96
+ password: kestra
97
+ repository:
98
+ type: postgres
99
+ storage:
100
+ type: local
101
+ local:
102
+ basePath: "/app/storage"
103
+ queue:
104
+ type: postgres
105
+ tasks:
106
+ tmpDir:
107
+ path: /tmp/kestra-wd/tmp
108
+ url: http://localhost:8080/'
108
109
```
109
110
110
111
:: alert { type =" info " }
You can’t perform that action at this time.
0 commit comments