b5807ce469d969f72c08ae1a8b5eef42c5835638
[e-mobility-charging-stations-simulator.git] / ui / web / src / assets / config-template.ts
1 import { AuthenticationType, type ConfigurationData, Protocol, ProtocolVersion } from '@/types'
2
3 const configuration: ConfigurationData = {
4 uiServer: {
5 host: 'localhost',
6 port: 8080,
7 protocol: Protocol.UI,
8 version: ProtocolVersion['0.0.1'],
9 authentication: {
10 enabled: false,
11 type: AuthenticationType.BASIC_AUTH,
12 username: 'admin',
13 password: 'admin'
14 }
15 }
16 }
17
18 export default configuration