Skip to content

Commit

Permalink
update import.dir description (#1996)
Browse files Browse the repository at this point in the history
describe how the folder structur should look like to import a project

---------

Co-authored-by: Jan Cizmar <cizmar@chlupac.com>
  • Loading branch information
Scarbous and JanCizmar authored Nov 30, 2023
1 parent bed166a commit 737666f
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ import org.springframework.boot.context.properties.ConfigurationProperties
displayName = "Import"
)
class ImportProperties {
@DocProperty(description = "File path of the directory where the file to import are located.")
@DocProperty(
description = "File path of the directory where the files to import are located.\n" +
"\n" +
":::info\n" +
"Your folder structure should look like:\n" +
"importDir\n" +
"└─Project # the foler name is the project name\n" +
" └─validation # the foler name is namespace\n" +
" ├─ en.json # the file name is the target language\n" +
" └─ de.json # second project language\n" +
":::\n\n"
)
var dir: String? = null

@DocProperty(
Expand Down

0 comments on commit 737666f

Please sign in to comment.