@@ -45,29 +45,30 @@ libraryDependencies ++= Seq(
45
45
// ////////
46
46
47
47
// Your username to login to Databricks
48
- dbcUsername : = sys.env(" DATABRICKSUSERNAME" )
48
+ val dbcUsername = sys.env(" DATABRICKSUSERNAME" )
49
49
50
50
// Your password (Can be set as an environment variable)
51
- dbcPassword : = sys.env(" DATABRICKSPASSWORD" )
51
+ val dbcPassword = sys.env(" DATABRICKSPASSWORD" )
52
52
// Gotcha: Setting environment variables in IDE's may differ.
53
53
// IDE's usually don't pick up environment variables from .bash_profile or .bashrc
54
54
55
55
// The URL to the Databricks REST API
56
- dbcApiUrl : = " https://your-sub-domain.cloud.databricks.com/api/1.2"
56
+ val dbcApiUrl = " https://your-sub-domain.cloud.databricks.com/api/1.2"
57
57
58
58
// Add any clusters that you would like to deploy your work to. e.g. "My Cluster"
59
- dbcClusters += " my-cluster" // Add "ALL_CLUSTERS" if you want to attach your work to all clusters
59
+ val dbcClusters = Seq (" my-cluster" )
60
+ // Add "ALL_CLUSTERS" if you want to attach your work to all clusters
60
61
61
62
// An optional parameter to set the location to upload your libraries to in the workspace
62
63
// e.g. "/Shared/libraries"
63
64
// This location must be an existing path and all folders must exist.
64
65
// NOTE: Specifying this parameter is *strongly* recommended as many jars will be uploaded to your cluster.
65
66
// Putting them in one folder will make it easy for your to delete all the libraries at once.
66
67
// Default is "/"
67
- dbcLibraryPath : = " /Shared/Libraries"
68
+ val dbcLibraryPath = " /Shared/Libraries"
68
69
69
70
// Whether to restart the clusters everytime a new version is uploaded to Databricks.
70
- dbcRestartOnAttach : = false // Default true
71
+ val dbcRestartOnAttach = false // Default true
71
72
72
73
// ////////
73
74
// /// END Databricks Settings
0 commit comments