This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const env = require('process').env; | |
const fetch = require('node-fetch'); | |
const URL = require('url'); | |
const AWS = require('aws-sdk'); | |
AWS.config.update({ | |
region: env.AWS_REGION, | |
credentials: new AWS.Credentials(env.AWS_ACCESS_KEY_ID, env.AWS_SECRET_ACCESS_KEY, env.AWS_SESSION_TOKEN) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
... | |
<ormcfclocation>path/to/entites</ormcfclocation> | |
... | |
<plugin> |