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
prefix=/opt/oracle | |
includedir=${prefix}/instantclient_12_1/sdk/include | |
libdir=${prefix}/instantclient_12_1 | |
Name: oci8 | |
Description: Oracle Instant Client | |
Version: 12.1 | |
Cflags: -I${includedir} | |
Libs: -L${libdir} -lclntsh |
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
/** | |
* For future use | |
* Handle Zip uploads through lambda | |
*/ | |
const AWS = require('aws-sdk') | |
const s3 = new AWS.S3() | |
const fileType = require('file-type') | |
const sha1 = require('sha1') | |
exports.handler = function(event, context) { |
OlderNewer