2.0.3 • Published 5 years ago
apex-publish-static-files v2.0.3
APEX Publish Static Files
Uploads all files from a local directory or a single file to Oracle APEX. Destination can be:
- Application Static Files
- Workspace Static Files
- Theme Files
- Plugin Files

Requirements
Install
npm install apex-publish-static-filesUsage
var publisher = require('apex-publish-static-files');
publisher.publish({
connectString: "user/pass@server:port/sid",
directory: "/Users/vmorneau/Documents/project/www",
appID: 111
});Options
| Name | Type | Default | Description |
|---|---|---|---|
| sqlclPath | string | sql | Path to SQLcl (example: /Users/vmorneau/sqlcl/bin/sql) |
| connectString | string | user/pass@server:port/sid | |
| directory | string | Local directory that contains the files or file path | |
| appID | numeric | Application ID to export the files to | |
| destination | string | Determines where the files should be uploaded in APEX (choices: application, workspace, theme, plugin) |
Methods
| Name | Type | Description |
|---|---|---|
| publish | function | Publishes the files to APEX |
Changelog
License
MIT © Vincent Morneau