Skip to content

Commit

Permalink
Merge pull request #4 from praveen-palanisamy/transformerjs-embeddings
Browse files Browse the repository at this point in the history
Local embeddings generator using Transformerjs to enable Hybrid App mode
  • Loading branch information
praveen-palanisamy committed Aug 28, 2023
2 parents a9212f3 + b37671e commit 255c6d9
Show file tree
Hide file tree
Showing 16 changed files with 689 additions and 58 deletions.
40 changes: 13 additions & 27 deletions .vscode/launch.json
Expand Up @@ -5,36 +5,22 @@
"version": "0.2.0",
"configurations": [
{
"name": "Nextron: Main",
"type": "node",
"request": "attach",
"protocol": "inspector",
"port": 9292,
"skipFiles": ["<node_internals>/**"],
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceFolder}/node_modules/*",
"webpack:///./*": "${workspaceFolder}/*",
"webpack:///*": "*"
}
"request": "launch",
"name": "Debug Backend",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "dev:desktop"],
"port": 3000,
"timeout": 30000
},
{
"name": "Nextron: Renderer",
"type": "chrome",
"request": "attach",
"port": 5858,
"timeout": 10000,
"urlFilter": "http://localhost:*",
"webRoot": "${workspaceFolder}/app",
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
}
}
],
"compounds": [
{
"name": "Nextron: All",
"preLaunchTask": "dev",
"configurations": ["Nextron: Main", "Nextron: Renderer"]
"type": "node",
"request": "launch",
"name": "Debug Frontend",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "dev"],
"port": 3001,
"timeout": 30000
}
]
}

1 comment on commit 255c6d9

@vercel
Copy link

@vercel vercel bot commented on 255c6d9 Aug 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.