Hi All,
I am trying to deploy a DBX APP via DAB, however source_code_path seems not to be parsed correctly to the app configuration.
- dbx_dash/
-- resources/
---- app.yml
-- src/
---- app.yaml
---- app.py
-- databricks.yml
resources/app.yml:
resources:
apps: my_app:
name: "my_app"
description: "My First APP"
# The location of the source code for the app
source_code_path: ../src
targets:
dev:
workspace:
root_path: /Workspace/Users/my_user@domain.com/my_app
databricks.yml:
bundle:
name: apps
include:
- resources/*.yml
targets:
dev:
mode: development
default: true
workspace:
host: https://my_host.com
The src folder, when deployed, goes to a folder called files/ in my workspace. However, the app has /Workspace/Users/my_user@domain.com/my_app as the source_path_code, which differs from the correct src path which is /Workspace/Users/my_user@domain.com/my_app/files/src.
Is there anything that I am missing here?
Thank you!
Adriana Cavalcanti