update documentdb sample readme (#269)

This commit is contained in:
yungez 2018-02-11 16:03:56 +08:00 коммит произвёл GitHub
Родитель 723a9c8826
Коммит 4b599e2541
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -20,7 +20,12 @@ This sample project demonstrates how to use Azure DocumentDB via Spring Boot Sta
### Config the sample
1. Navigate to `src/main/resources` and open `application.properties`.
2. Replace the `DNS URI`, `Access Key` and `Name` with information of your database
2. replace below properties in `application.properties` with information of your database.
```properties
azure.documentdb.uri=your-documentdb-uri
azure.documentdb.key=your-documentdb-key
azure.documentdb.database=your-documentdb-databasename
```
### Run the sample