From c81e7b4547c93826af00bc77231645ae5f36b031 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 22 Feb 2021 16:25:00 +1100 Subject: [PATCH] remove two unused files --- .vscode/launch.json | 58 --------------------------------------------- LOKI-NOTES.md | 6 ----- 2 files changed, 64 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 LOKI-NOTES.md diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 9a92b58d5..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - // 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", - "name": "Mocha Tests", - "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", - "args": [ - "--recursive", - "--exit", - "test/app", - "test/modules", - "ts/test", - "libloki/test/node" - ], - "internalConsoleOptions": "openOnSessionStart" - }, - { - "type": "node", - "request": "launch", - "name": "Launch node Program", - "program": "${file}" - }, - { - "type": "node", - "request": "launch", - "name": "Launch Program", - "program": "${file}" - }, - { - "name": "Python: Current File", - "type": "python", - "request": "launch", - "program": "${file}" - }, - { - "name": "Debug Main Process", - "type": "node", - "request": "launch", - "env": { - "NODE_APP_INSTANCE": "1" - }, - "cwd": "${workspaceRoot}", - "console": "integratedTerminal", - "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", - "windows": { - "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" - }, - "args": ["."], - "sourceMaps": true, - "outputCapture": "std" - } - ] -} diff --git a/LOKI-NOTES.md b/LOKI-NOTES.md deleted file mode 100644 index 18d4aefad..000000000 --- a/LOKI-NOTES.md +++ /dev/null @@ -1,6 +0,0 @@ -# Create fake contacts - -Run `window.getAccountManager().addMockContact()` in the debugger console. This will print the fake contact public key. -Behind the scenes, this also emulates that we're already received the contact's prekeys by generating them and saving them in our db. -Copy/paste that public key in the search bar to start chatting. -The messages should have a "v" tick to mark that the message was correctly sent (you need to run the httpserver from /mockup_servers)