1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| { "name": "PostgreSQL", "icon": "postgres", "description": "Provides an API for accessing PostgreSQL databases", "authorName": "Kyle U", "authorEmail": "kyle@kyleu.com", "license": "CC0", "sourcecode": "https://github.com/kyleu/projectforge/tree/main/module/postgres", "configVars": [ { "key": "db_host", "type": "string", "description": "hostname for the default PostgreSQL connection, defaults to `localhost`" }, { "key": "db_port", "type": "int", "description": "port for the default PostgreSQL connection, defaults to `5432`" }, { "key": "db_user", "type": "string", "description": "user for the default PostgreSQL connection" }, { "key": "db_password", "type": "string", "description": "password for the default PostgreSQL connection" }, { "key": "db_database", "type": "string", "description": "database for the default PostgreSQL connection" }, { "key": "db_schema", "type": "string", "description": "schema for the default PostgreSQL connection" }, { "key": "max_connections", "type": "int", "description": "max connection count for the default PostgreSQL connection" }, { "key": "db_debug", "type": "bool", "description": "when set, logs all database interactions" }, { "key": "db_ssl", "type": "bool", "description": "when set, uses SSL sessions for connections" } ], "requires": ["database"], "priority": 10, "technology": ["postgres"] }
|