You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"(?m)^( open:)": "\n # `dev.open` tells DevSpace to open certain URLs as soon as they return HTTP status 200\n # Since we configured port-forwarding, we can use a localhost address here to access our application\n$1",
375
376
"(?m)^( - url:.+)": "$1\n",
376
377
"(?m)^( sync:)": " # `dev.sync` configures a file sync between our Pods in k8s and your local project files\n$1",
378
+
"(?m)^( (-| ) excludePaths:)": " # `excludePaths` option expects an array of strings with paths that should not be synchronized between the\n # local filesystem and the remote container filesystem. It uses the same syntax as `.gitignore`.\n$1",
377
379
"(?m)^( terminal:)": "\n # `dev.terminal` tells DevSpace to open a terminal as a last step during `devspace dev`\n$1",
378
380
"(?m)^( command:)": " # With this optional `command` we can tell DevSpace to run a script when opening the terminal\n # This is often useful to display help info for new users or perform initial tasks (e.g. installing dependencies)\n # DevSpace has generated an example ./devspace_start.sh file in your local project - Feel free to customize it!\n$1",
379
381
"(?m)^( replacePods:)": "\n # Since our Helm charts and manifests deployments are often optimized for production,\n # DevSpace let's you swap out Pods dynamically to get a better dev environment\n$1",
syncCmd.Flags().StringVar(&cmd.ImageSelector, "image-selector", "", "The image to search a pod for (e.g. nginx, nginx:latest, ${runtime.images.app}, nginx:${runtime.images.app.tag})")
85
88
syncCmd.Flags().BoolVar(&cmd.Pick, "pick", true, "Select a pod")
86
89
87
90
syncCmd.Flags().StringSliceVarP(&cmd.Exclude, "exclude", "e", []string{}, "Exclude directory from sync")
0 commit comments