diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..1c18ee56 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // 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": [ + { + "command": "npm start", + "name": "ng serve", + "request": "launch", + "type": "node-terminal", + "cwd": "${workspaceFolder}/overlord", + }, + { + "name": "Python: FastAPI", + "type": "python", + "request": "launch", + "module": "brewman", + "cwd": "${workspaceFolder}/brewman", + "args": [ + ], + "jinja": true, + "justMyCode": true, + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..4e45558c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,16 @@ +{ + "python.defaultInterpreterPath": "/home/tanshu/.cache/pypoetry/virtualenvs/brewman-C3_Ccu4O-py3.10/bin/python", + "files.exclude": { + "**/__pycache__": true, + "**/.mypy_cache": true, + ".idea": true, + "**/node_modules": true, + }, + "search.exclude": { + "**/__pycache__": true, + "**/.mypy_cache": true, + ".idea": true, + "**/node_modules": true, + "**/package-lock.json": true, + } +} \ No newline at end of file diff --git a/brewman/.gitignore b/brewman/.gitignore index 0be992e2..600fd86a 100644 --- a/brewman/.gitignore +++ b/brewman/.gitignore @@ -1,4 +1,5 @@ *.pyc */__pycache__/ *.egg-info/ -dist/ \ No newline at end of file +dist/ +poetry.lock \ No newline at end of file diff --git a/overlord/.gitignore b/overlord/.gitignore index 105c00f2..3f8a8401 100644 --- a/overlord/.gitignore +++ b/overlord/.gitignore @@ -9,6 +9,7 @@ # dependencies /node_modules +package-lock.json # profiling files chrome-profiler-events*.json