feat: initial application release

This commit is contained in:
Nathaniel Landau
2022-12-23 04:10:08 +00:00
parent 35717e0760
commit b7bcf74926
78 changed files with 15508 additions and 0 deletions

20
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
// 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": [
{
"name": "Python: CLi application",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/obsidian_metadata/cli.py",
"args": [
"--config-file",
"${userHome}/.obsidian_metadata.toml",
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}