|
26 | 26 | "Type": "EnvironmentVariable", |
27 | 27 | "InputType": "FreeText", |
28 | 28 | "Description": "Host address for the PostgreSQL instance.", |
29 | | - "DefaultValue": "localhost", |
| 29 | + "DefaultValue": "postgresql", |
30 | 30 | "Required": true |
31 | 31 | }, |
32 | 32 | { |
33 | 33 | "Name": "POSTGRES_PORT", |
34 | 34 | "Type": "EnvironmentVariable", |
35 | 35 | "InputType": "FreeText", |
36 | 36 | "Description": "Port number for the PostgreSQL instance.", |
37 | | - "DefaultValue": "5432", |
| 37 | + "DefaultValue": 80, |
38 | 38 | "Required": true |
39 | 39 | }, |
40 | 40 | { |
41 | 41 | "Name": "POSTGRES_DBNAME", |
42 | 42 | "Type": "EnvironmentVariable", |
43 | 43 | "InputType": "FreeText", |
44 | 44 | "Description": "Database name in PostgreSQL where data should be stored.", |
45 | | - "DefaultValue": "mydatabase", |
| 45 | + "DefaultValue": "quix", |
46 | 46 | "Required": true |
47 | 47 | }, |
48 | 48 | { |
49 | 49 | "Name": "POSTGRES_USER", |
50 | 50 | "Type": "EnvironmentVariable", |
51 | 51 | "InputType": "FreeText", |
52 | 52 | "Description": "Username for the PostgreSQL database.", |
53 | | - "DefaultValue": "myuser", |
| 53 | + "DefaultValue": "admin", |
54 | 54 | "Required": true |
55 | 55 | }, |
56 | 56 | { |
|
65 | 65 | "Type": "EnvironmentVariable", |
66 | 66 | "InputType": "FreeText", |
67 | 67 | "Description": "The PostgreSQL table where data will be stored. If the table does not exist, it will be created automatically.", |
68 | | - "DefaultValue": "numbers", |
69 | 68 | "Required": true |
70 | 69 | }, |
| 70 | + { |
| 71 | + "Name": "POSTGRES_SCHEMA", |
| 72 | + "Type": "EnvironmentVariable", |
| 73 | + "InputType": "FreeText", |
| 74 | + "Description": "The schema name. Schemas are a way of organizing tables and not related to the table data, referenced as `<schema_name>.<table_name>`. PostrgeSQL uses 'public' by default under the hood.", |
| 75 | + "DefaultValue": "public", |
| 76 | + "Required": false |
| 77 | + }, |
71 | 78 | { |
72 | 79 | "Name": "SCHEMA_AUTO_UPDATE", |
73 | 80 | "Type": "EnvironmentVariable", |
|
0 commit comments