Skip to content

Commit 3fd4441

Browse files
author
Chris Wiechmann
committed
Changes the scope of the package
1 parent d0524e3 commit 3fd4441

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

api-builder-plugin-dc-postgres/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The PostgreSQL data connector is a plugin for API Builder that can connect to yo
2323
## Installation
2424

2525
```bash
26-
npm install --no-optional @axway/api-builder-plugin-dc-postgres
26+
npm install --no-optional @axway-api-builder-ext/api-builder-plugin-dc-postgres
2727
```
2828

2929
A configuration file is generated for you and placed into the conf directory of your API Builder project. The configuration for your PostgreSQL is expected to be in environment variables or in the conf/.env file during development.
@@ -34,7 +34,7 @@ Once the plugin is installed, the configuration file is located `<project>/conf/
3434

3535
| Option name | Type | Description |
3636
| ----------- | ---- | ----------- |
37-
| connector | string | Must be: `@axway/api-builder-plugin-dc-postgres` |
37+
| connector | string | Must be: `@axway-api-builder-ext/api-builder-plugin-dc-postgres` |
3838
| connectionPooling | boolean | boolean Enables connection pooling for better performance and scalability. |
3939
| connectionLimit | number | Number of simultaneous connections when connectionPooling is enabled. |
4040
| host | string | The database host. |

api-builder-plugin-dc-postgres/config/postgres.default.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Use this file to configure your Postgres data connector
33
*
4-
* By default, Postgres host, username, password and port are environment variables.
4+
* By default, PostgreSQL host, username, password and port are environment variables.
55
* You may configure them in conf/.env file during development phase.
66
* Example setting of environment variables manually:
77
* linux/mac: export POSTGRES_PASSWORD=password
@@ -10,7 +10,7 @@
1010
module.exports = {
1111
connectors: {
1212
postgres: {
13-
connector: '@axway/api-builder-plugin-dc-postgres',
13+
connector: '@axway-api-builder-ext/api-builder-plugin-dc-postgres',
1414
connectionPooling: true,
1515
connectionLimit: 10,
1616
host: process.env.POSTGRES_HOST,

api-builder-plugin-dc-postgres/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@axway/api-builder-plugin-dc-postgres",
2+
"name": "@axway-api-builder-ext/api-builder-plugin-dc-postgres",
33
"description": "PostgreSQL data connector for Axway API Builder",
44
"version": "1.0.0",
55
"author": {

0 commit comments

Comments
 (0)