changed the username and password for the mysql server (for which I supidly included my own in the last commit *facepalm*)
This commit is contained in:
parent
1e6b119ebd
commit
539ed1720b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue