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
| var fs = require("fs") | |
| var ssl_options = { | |
| key: fs.readFileSync('privatekey.pem'), | |
| cert: fs.readFileSync('certificate.pem') | |
| }; | |
| var port = process.env.PORT || 3000; | |
| var express = require('express'); | |
| var ejs = require('ejs'); | |
| var passport = require('passport') |
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
| #!/bin/sh | |
| ################# | |
| # ZeroC0D3 Team # | |
| ################# | |
| ### STEP ### | |
| # 1) Download binary file "sqlite3" from | |
| # https://www.sqlite.org/ | |
| # 2) Extract binary "sqlite3" to your PATH_BIN | |
| # 3) Set your file name in PATH_TARGET_DUMP for all schema & data |