Skip to content

Configuration

Create a configuration file config.json:

{
"name": "my-project",
"version": "1.0.0",
"options": {
"debug": false,
"timeout": 5000
}
}
  • name - Project name
  • version - Project version
  • debug - Enable debug mode (default: false)
  • timeout - Timeout in milliseconds (default: 5000)

You can also configure via environment variables:

Terminal window
export PROJECT_NAME="my-project"
export DEBUG_MODE="true"

After configuration, continue with: