mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 12:15:46 +08:00
36 lines
835 B
JSON
36 lines
835 B
JSON
{
|
|
"AppOptions": {
|
|
"Name": "Booking-Service"
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Server=.\\sqlexpress;Database=BookingDB;Trusted_Connection=True;MultipleActiveResultSets=true"
|
|
},
|
|
"Jwt": {
|
|
"Authority": "https://localhost:5005",
|
|
"Audience": "booking-api"
|
|
},
|
|
"RabbitMq": {
|
|
"HostName": "localhost",
|
|
"ExchangeName": "booking",
|
|
"UserName": "guest",
|
|
"Password": "guest"
|
|
},
|
|
"Grpc": {
|
|
"FlightAddress": "https://localhost:5003",
|
|
"PassengerAddress": "https://localhost:5012"
|
|
},
|
|
"EventStore": {
|
|
"ConnectionString": "esdb://localhost:2113?tls=false"
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|