@app-connect/core 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Core package for RingCentral App Connect project providing modular APIs for CRM
|
|
|
10
10
|
- **Contact Management**: Find, create, and manage contacts across CRM platforms
|
|
11
11
|
- **Call Logging**: Comprehensive call and message logging capabilities
|
|
12
12
|
- **Analytics**: Built-in analytics tracking for all operations
|
|
13
|
-
- **Database Integration**:
|
|
13
|
+
- **Database Integration**: Sequelize.js ORM with automatic table management
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
@@ -226,12 +226,13 @@ The core package provides the following API endpoints:
|
|
|
226
226
|
|
|
227
227
|
The core package uses the following environment variables:
|
|
228
228
|
|
|
229
|
-
- `
|
|
229
|
+
- `DATABASE_URL` - Database connection string for Sequelize ORM
|
|
230
230
|
- `DISABLE_SYNC_DB_TABLE` - Skip database table synchronization
|
|
231
231
|
- `OVERRIDE_APP_SERVER` - Override app server URL in manifests
|
|
232
232
|
- `HASH_KEY` - Key for hashing user information
|
|
233
233
|
- `APP_SERVER_SECRET_KEY` - Server secret key
|
|
234
234
|
- `IS_PROD` - Production environment flag
|
|
235
|
+
- `DYNAMODB_LOCALHOST` - Local DynamoDB endpoint for development, used for lock cache
|
|
235
236
|
|
|
236
237
|
## Architecture
|
|
237
238
|
|