diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..cf31075f --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,6 @@ +image: node:11.10.1-alpine +ports: +- port: 8080 + +tasks: + - command: "./go install" diff --git a/.theia/launch.json b/.theia/launch.json new file mode 100644 index 00000000..6dbada55 --- /dev/null +++ b/.theia/launch.json @@ -0,0 +1,29 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Run All Tests", + "program": "${workspaceFolder}/node_modules/.bin/jest", + "args": ["--runInBand"], + "internalConsoleOptions": "neverOpen", + "windows": { + "program": "${workspaceFolder}/node_modules/jest/bin/jest", + }, + }, + { + "type": "node", + "request": "launch", + "name": "Run All Tests in Dev Mode", + "program": "${workspaceFolder}/node_modules/.bin/jest", + "args": ["--runInBand", "--watchAll"], + "internalConsoleOptions": "neverOpen", + "windows": { + "program": "${workspaceFolder}/node_modules/jest/bin/jest", + }, + }, + ] +}