This file contains 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
[build] | |
command = "npm i --verbose && strip --strip-debug ./node_modules/couchbase/build/Release/couchbase_impl.node" | |
publish = "." | |
[template.environment] | |
COUCHBASE_USERNAME = "COUCHBASE_USERNAME" | |
COUCHBASE_PASSWORD = "COUCHBASE_PASSWORD" | |
COUCHBASE_ENDPOINT = "COUCHBASE_ENDPOINT" | |
COUCHBASE_BUCKET = "COUCHBASE_BUCKET" |
This file contains 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
[template.environment] | |
VITE_TURSO_DB_URL = "VITE_TURSO_DB_URL" | |
VITE_TURSO_DB_AUTH_TOKEN = "VITE_TURSO_DB_AUTH_TOKEN" |
This file contains 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
[template.environment] | |
MORALIS_API_KEY = "MORALIS_API_KEY" | |
NEXTAUTH_SECRET = "NEXTAUTH_SECRET" |
This file contains 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
var request = require('request') | |
// twitter authentication | |
var twitter_oauth = { | |
consumer_key: 'your-consumer-key', | |
consumer_secret: 'your-consumer-secret', | |
token: 'your-access-token', | |
token_secret: 'your-access-token-secret' | |
} |
This file contains 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
var request = require('request') | |
// twitter authentication | |
var twitter_oauth = { | |
consumer_key: 'TWITTER_CONSUMER_KEY', | |
consumer_secret: 'TWITTER_CONSUMER_SECRET', | |
token: 'TWITTER_ACCESS_TOKEN', | |
token_secret: 'TWITTER_ACCESS_TOKEN_SECRET' | |
} |
This file contains 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
var request = require('request') | |
// twitter authentication | |
var twitter_oauth = { | |
consumer_key: 'redacted', | |
consumer_secret: 'redacted', | |
token: 'redacted', | |
token_secret: 'redacted' | |
} |
This file contains 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
var nconf = require('nconf') | |
var request = require('request') | |
// load config | |
nconf.file({ file: 'config.json' }).env() | |
// twitter authentication | |
var twitter_oauth = { | |
consumer_key: 'redacted', |
This file contains 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
var request = require('request') | |
var fs = require("fs") | |
// twitter authentication | |
var twitter_oauth = { | |
consumer_key: 'redacted', | |
consumer_secret: 'redacted', | |
token: 'redacted', | |
token_secret: 'redacted' | |
} |
This file contains 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
var nconf = require('nconf') | |
var request = require('request') | |
// load config | |
nconf.file({ file: 'config.json' }).env() | |
// twitter authentication | |
var twitter_oauth = { | |
consumer_key: nconf.get('TWITTER_CONSUMER_KEY'), |
NewerOlder