Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions node.js/cds-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ You can provide static settings in a `"cds"` section of your project's _package.
```json
"cds": {
"requires": {
"db": { "kind": "sql" }
"db": "sql"
}
}
```
Expand All @@ -229,22 +229,18 @@ Alternatively, you can put static settings in _.cdsrc.json_ file in your project

```json
"requires": {
"db": { "kind": "sql" }
"db": "sql"
}
```

::: tip
_.cdsrc_ goes without an enclosing `"cds"` section.
:::

## Private Project Settings {#private-project-settings}

### In _./.cdsrc-private.json_

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_.
A _.cdsrc.json_ equivalent for your private settings used in local testing. The file should not be committed to your version control system.

## Process Environment {#process-env}


### On the Command Line

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