This diff introduces changes to the Tunnelbroker's Config manager to add handling of notifications secrets to the config file.
At the moment we already have some secrets for Tunnelbroker which are handled by the config file. For example AMQP server credentials. Seems that it's a good way to store the secrets for notifications services in the config file as well.
We need to store the following secret data for the notifications services:
Apple APNS:
- P12 certificate path;
- P12 certificate password.
Android FCM:
- Server Key.
The config file notifications fields will be as required and must be provided for the app to start.
Following the current convention for the config file it will look like the below:
```
[notifications]
apns_cert_path = "~/cert.p12"
apns_cert_password = "cert_password"
fcm_server_key = "AAAA:AAAA....BBBB"
```
Related Linear task: ENG-