mirror of
https://github.com/bellingcat/datasheet-server.git
synced 2026-06-10 04:18:31 +03:00
19 lines
381 B
JavaScript
19 lines
381 B
JavaScript
import BP from "./lib/blueprinters";
|
|
|
|
export default {
|
|
port: 4040,
|
|
googleSheets: {
|
|
email: "project-name@reliable-baptist-23338.iam.gserviceaccount.com",
|
|
privateKey: "SOME_PRIVATE_KEY",
|
|
sheets: [
|
|
{
|
|
name: "example",
|
|
id: "1s-vfBR8Uy-B-TLO_C5Ozw4z-L0E3hdP8ohMV761ouRI",
|
|
tabs: {
|
|
objects: [BP.byRow]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
};
|