build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / assets / config-template.ts
CommitLineData
217db058
JB
1import { AuthenticationType, type ConfigurationData, Protocol, ProtocolVersion } from '@/types'
2
3const 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
18export default configuration