-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update docs module document #3073
Conversation
@pranavpatil19 Can you confirm it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can add docs module using cli.
abp add-module Volo.Docs
Yes ,let me check its working or not . Thank you for quick replay |
@pranavpatil19 Any news? |
I will Replay as soon as possible .but Sample Project Record for "FileSystem" document is not updated |
@pranavpatil19 The file system chapter does not need to be updated, it is still valid |
Insert query get error
…On Sat, 14 Mar, 2020, 8:12 AM LiangShiWei, ***@***.***> wrote:
@pranavpatil19 <https://github.com/pranavpatil19> The file system chapter
does not need to be updated, it is still valid
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3073 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAXJTJC2EEESA6A75QFWKLTRHLVLHANCNFSM4LFQL4WQ>
.
|
@pranavpatil19 Any error? Please create issues for discussion. |
@maliming @liangshiw
'1)Thax For new Document Update .Work perfectly .
a) New button style is not match compare original document of abp
b)How to versioning Documents ..
[image: Screenshot_1.png]
2)When I try to integrate Git and Files system Document Model Together Its
Not working .I get 404 error
[image: Screenshot_2.png]
3) in which project i have to implement Full-Text Search ..please guide
Full-Text Search(Elastic Search)
The Docs module supports full-text search using Elastic Search. It is not
enabled by default. You can configure DocsElasticSearchOptions to enable it.
Configure<DocsElasticSearchOptions>(options =>
{
options.Enable = true;
options.IndexName = "your_index_name"; //default IndexName is abp_documents
});
The Index is automatically created after the application starts if the
Index does
not exist.
DefaultElasticClientProvider is responsible for creating IElasticClient. By
default, it reads Elastic Search's Url from IConfiguration. If your
IElasticClient needs additional configuration, please use override
IElasticClientProvider service and replace it in the dependency injection
<https://docs.abp.io/en/abp/latest/Modules/Dependency-Injection> system.
{
"ElasticSearch": {
"Url": "http://localhost:9200"
}
}
…On Sun, Mar 15, 2020 at 9:02 AM maliming ***@***.***> wrote:
Merged #3073 <#3073> into dev.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3073 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAXJTJA2YD5NTN23XHPML73RHRD3TANCNFSM4LFQL4WQ>
.
|
Resolved : #3063