- MongoDB configuration in appsettings.json
"DHMiniSiteDatabase": {
"ConnectionString": "mongodb://localhost:27017",
"DatabaseName": "dh_mini_site",
"PostsCollectionName": "posts",
"CommentsCollectionName": "comments"
}
- Endpoint configuration in appsettings.json
"Kestrel": {
"Endpoints": {
"Https": {
"Url": "https://*:8001"
},
"Http": {
"Url": "http://*:8000"
}
}
}
- RabbitMQ configuration in appsettings.json
"RabbitMQConfiguration": {
"HostName": "localhost",
"Password": "guest",
"UserName": "guest"
}
- SMTP configuration in appsettings.json
"SmtpConfig": {
"Host": "smtp.yandex.com.tr",
"Port": "465",
"User": "[email protected]",
"From": "[email protected]",
"Password": "qmjiabczulimuyva",
"UseSSL": "true"
}
- RabbitMQ configuration in appsettings.json
"RabbitMQConfiguration": {
"HostName": "localhost",
"Password": "guest",
"UserName": "guest"
}
- For DHMiniSite project
cd DHMiniSite
dotnet build
dotnet run
- For DHRabbitMQConsumer project
cd DHRabbitMQConsumer
dotnet build
dotnet run