2019-01-04 18:14:53 +00:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2019-02-20 23:07:29 +00:00
|
|
|
"name": "Run",
|
2019-01-04 18:14:53 +00:00
|
|
|
"program": "${workspaceFolder}/lib/index.ts",
|
|
|
|
"preLaunchTask": "tsc: build - tsconfig.json",
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/built/*.js"
|
2019-02-20 22:12:29 +00:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
// "DOMAIN": "shadowfacts.net",
|
|
|
|
"DOMAIN": "b2dee2f2.ngrok.io",
|
|
|
|
"DB_PATH": "activitypub.db",
|
|
|
|
"PUB_KEY_PEM": "public.pem",
|
|
|
|
"PRIV_KEY_PEM": "private.pem"
|
|
|
|
},
|
|
|
|
"console": "integratedTerminal"
|
2019-01-04 18:14:53 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|