Mandarine.json
propertiesFilePath: string;
denoEnv: {
[prop: string]: string
}Last updated
By creating a file called mandarine.json in the root of your current working directory, you can assign some behaviors to Mandarine.
Json structure
propertiesFilePath: string;
denoEnv: {
[prop: string]: string
}propertiesFilePath
defines the path of your properties.json file without having to necessarily have ./src/main/resources/properties.json which is the default location (See more here)
denoEnv
allows the creation of Deno environmental keys & values.
Last updated