yavsc/src/test/appsettings.json

57 lines
1.5 KiB
JSON
Raw Normal View History

{
"Site": {
"Authority": "dev.pschneider.fr",
"Title": "Yavsc dev",
"Slogan": "Yavsc : WIP.",
"Banner": "/images/yavsc.png",
"HomeViewName": "Home",
"FavIcon": "/favicon.ico",
2018-07-23 17:15:28 +02:00
"Icon": "/images/yavsc.png",
2018-07-25 02:12:13 +02:00
"GitRepository": "testingrepo",
"Owner": {
2018-09-03 13:53:51 +02:00
"Name": "Site Owner Name",
"EMail": "your@email",
2018-07-25 02:12:13 +02:00
"PostalAddress": {
2018-09-03 13:53:51 +02:00
"Street1": "Your Address",
"Street2": "your street",
"PostalCode": "543 21~3",
"City": "",
"State": "",
2018-07-25 02:12:13 +02:00
"Province": null
}
},
"Admin": {
2018-09-03 13:53:51 +02:00
"Name": "Administrator name",
"EMail": "daAdmin@e.mail"
2018-07-25 02:12:13 +02:00
}
},
"Smtp": {
"Host": "localhost",
"Port": 25,
"EnableSSL": false
},
"Logging": {
"IncludeScopes": true,
"LogLevel": {
"Default": "Debug",
"System": "Warning",
"Microsoft": "Warning"
}
},
"Data": {
2018-09-04 16:40:02 +02:00
"DevConnection": {
"Database":"postgres",
"Server": "[NpgsqlHostName]",
"Port": 5432,
"Username": "[devUserName]",
"Password": "[DevPassword]"
},
"TestConnection": {
"Database":"[TestDbName]",
"Server": "[TestNpgsqlHostName]",
"Port": 5432,
"Username": "[TestUserName]",
"Password": "[TestPassword]"
}
}
}