server: add account creation and login

GitLab: #10
Change-Id: Iddd7ecee7210bc7b839cb2cec5d4291ac725d104
diff --git a/server/src/index.ts b/server/src/index.ts
index 661693f..3c40b28 100644
--- a/server/src/index.ts
+++ b/server/src/index.ts
@@ -23,12 +23,14 @@
 import { Container } from 'typedi';
 
 import { App } from './app.js';
+import { Creds } from './creds.js';
 import { Ws } from './ws.js';
 
 log.setLevel(process.env.NODE_ENV === 'production' ? 'error' : 'trace');
 
 const port: string | number = 5000;
 
+await Container.get(Creds).build();
 const app = await Container.get(App).build();
 const wss = await Container.get(Ws).build();