Skip to content

Commit 5306d44

Browse files
authored
Remove obsolete tip in cds.env guide (#996)
* Remove obsolete tip in `cds.env` guide * File name
1 parent cffdca8 commit 5306d44

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

node.js/cds-env.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ You can provide static settings in a `"cds"` section of your project's _package.
218218
```json
219219
"cds": {
220220
"requires": {
221-
"db": { "kind": "sql" }
221+
"db": "sql"
222222
}
223223
}
224224
```
@@ -229,22 +229,18 @@ Alternatively, you can put static settings in _.cdsrc.json_ file in your project
229229

230230
```json
231231
"requires": {
232-
"db": { "kind": "sql" }
232+
"db": "sql"
233233
}
234234
```
235235

236-
::: tip
237-
_.cdsrc_ goes without an enclosing `"cds"` section.
238-
:::
239-
240236
## Private Project Settings {#private-project-settings}
237+
241238
### In _./.cdsrc-private.json_
242239

243-
Put your private settings for local testing here. The file should not be submitted to your source code management system. The file's structure is the same like for _./.cdsrc.json_.
240+
A _.cdsrc.json_ equivalent for your private settings used in local testing. The file should not be committed to your version control system.
244241

245242
## Process Environment {#process-env}
246243

247-
248244
### On the Command Line
249245

250246
On UNIX-based systems (Mac, Linux) you can specify individual process env variables as prefixes to the command to start your server.

0 commit comments

Comments
 (0)