diff --git a/source/calendarwebapp/configuration.d b/source/calendarwebapp/configuration.d index 7f31ce2..ddf38af 100644 --- a/source/calendarwebapp/configuration.d +++ b/source/calendarwebapp/configuration.d @@ -23,7 +23,7 @@ public: override void registerDependencies(shared(DependencyContainer) container) { auto mongoClient = connectMongoDB("localhost"); - auto pool = new MySQLPool("localhost", "root", "Ilemm3Kzj", "CalendarWebapp"); + auto pool = new MySQLPool("localhost", "username", "password", "CalendarWebapp"); container.register!MySQLPool.existingInstance(pool); container.register!MongoClient.existingInstance(mongoClient); container.register!(EventStore, MySQLEventStore);