mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
PRDONE-94: updated to ignore missing .env file
This commit is contained in:
@ -135,7 +135,9 @@ public class SampleMetaDataProvider
|
||||
.withName(PersonsByCreateDateBarChart.class.getSimpleName())
|
||||
.withCodeReference(new QCodeReference(PersonsByCreateDateBarChart.class, null)));
|
||||
|
||||
Dotenv dotenv = Dotenv.configure().load();
|
||||
Dotenv dotenv = Dotenv.configure()
|
||||
.ignoreIfMissing()
|
||||
.load();
|
||||
QWidgetMetaDataInterface quickSightChartMetaData = new QuickSightChartMetaData()
|
||||
.withAccountId(dotenv.get("QUICKSIGHT_ACCCOUNT_ID"))
|
||||
.withAccessKey(dotenv.get("QUICKSIGHT_ACCESS_KEY"))
|
||||
|
Reference in New Issue
Block a user