Skip to content

Commit 72c1a42

Browse files
committed
Added MySql entry to table
1 parent 89f419d commit 72c1a42

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

Readme.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -63,34 +63,34 @@ The appsettings.json file has a lot of options to customize the content of the b
6363

6464
```
6565

66-
| Property | Type | Description |
67-
| ------------------------- | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
68-
| BlogName | string | Name of your blog. Is used in the navbar and is used as the title of the page. Will not be shown when `BlogBrandUrl` is set |
69-
| BlogBrandUrl | string | The url to an image which is used as a brand image in the navigation bar. If not set or `null` the `BlogName` will be shown |
70-
| Social | node | Represents all possible linked social accounts |
71-
| GithubAccountUrl | string | Url to your github account. If not set it is not shown in the introduction card |
72-
| LinkedInAccountUrl | string | Url to your LinkedIn account. If not set it is not shown in the introduction card |
73-
| TwitterAccountUrl | string | Url to your Twitter account. If not set it is not shown in the introduction card |
74-
| Introduction | | Is used for the introduction part of the blog |
75-
| Description | MarkdownString | Small introduction text for yourself. This is also used for `<meta name="description">` tag. For this the markup will be converted to plain text |
76-
| BackgroundUrl | string | Url or path to the background image. (Optional) |
77-
| ProfilePictureUrl | string | Url or path to your profile picture |
78-
| PersistenceProvider | string | Declares the type of the storage provider (one of the following: `SqlServer`, `Sqlite`, `RavenDb`, `InMemory`). More in-depth explanation down below |
79-
| ConnectionString | string | Is used for connection to a database. Not used when `InMemoryStorageProvider` is used |
80-
| DatabaseName | string | Name of the database. Only used with `RavenDbStorageProvider` |
81-
| Auth0 | | Configuration for setting up Auth0 |
82-
| Domain | string | See more details here: https://manage.auth0.com/dashboard/ |
83-
| ClientId | string | See more details here: https://manage.auth0.com/dashboard/ |
84-
| ClientSecret | string | See more details here: https://manage.auth0.com/dashboard/ |
85-
| BlogPostsPerPage | int | Gives the amount of blog posts loaded and display per page. For more the user has to use the navigation |
86-
| AboutMeProfileInformation | node | Sets information for the About Me Page. If omitted the page is disabled completely |
87-
| Name | string | Name, which is displayed on top of the profile card |
88-
| Heading | string | Displayed under the name. For example job title |
89-
| ProfilePictureUrl | string | Displayed profile picture |
66+
| Property | Type | Description |
67+
| ------------------------- | -------------- |----------------------------------------------------------------------------------------------------------------------------------------------------------------|
68+
| BlogName | string | Name of your blog. Is used in the navbar and is used as the title of the page. Will not be shown when `BlogBrandUrl` is set |
69+
| BlogBrandUrl | string | The url to an image which is used as a brand image in the navigation bar. If not set or `null` the `BlogName` will be shown |
70+
| Social | node | Represents all possible linked social accounts |
71+
| GithubAccountUrl | string | Url to your github account. If not set it is not shown in the introduction card |
72+
| LinkedInAccountUrl | string | Url to your LinkedIn account. If not set it is not shown in the introduction card |
73+
| TwitterAccountUrl | string | Url to your Twitter account. If not set it is not shown in the introduction card |
74+
| Introduction | | Is used for the introduction part of the blog |
75+
| Description | MarkdownString | Small introduction text for yourself. This is also used for `<meta name="description">` tag. For this the markup will be converted to plain text |
76+
| BackgroundUrl | string | Url or path to the background image. (Optional) |
77+
| ProfilePictureUrl | string | Url or path to your profile picture |
78+
| PersistenceProvider | string | Declares the type of the storage provider (one of the following: `SqlServer`, `Sqlite`, `RavenDb`, `InMemory`, `MySql`). More in-depth explanation down below |
79+
| ConnectionString | string | Is used for connection to a database. Not used when `InMemoryStorageProvider` is used |
80+
| DatabaseName | string | Name of the database. Only used with `RavenDbStorageProvider` |
81+
| Auth0 | | Configuration for setting up Auth0 |
82+
| Domain | string | See more details here: https://manage.auth0.com/dashboard/ |
83+
| ClientId | string | See more details here: https://manage.auth0.com/dashboard/ |
84+
| ClientSecret | string | See more details here: https://manage.auth0.com/dashboard/ |
85+
| BlogPostsPerPage | int | Gives the amount of blog posts loaded and display per page. For more the user has to use the navigation |
86+
| AboutMeProfileInformation | node | Sets information for the About Me Page. If omitted the page is disabled completely |
87+
| Name | string | Name, which is displayed on top of the profile card |
88+
| Heading | string | Displayed under the name. For example job title |
89+
| ProfilePictureUrl | string | Displayed profile picture |
9090
| Giscus | node | Enables the comment section via giscus. If left empty the comment secion will not be shown. For more information checkout the section about comments down below |
9191
| Disqus | node | Enables the comment section via disqus. If left empty the comment secion will not be shown. For more information checkout the section about comments down below |
92-
| KofiToken | string | Enables the "Buy me a Coffee" button of Kofi. To aquire the token head down to the "Kofi" section |
93-
| GithubSponsorName | string | Enables the "Github Sponsor" button which redirects to GitHub. Only pass in the user name instead of the url. |
92+
| KofiToken | string | Enables the "Buy me a Coffee" button of Kofi. To aquire the token head down to the "Kofi" section |
93+
| GithubSponsorName | string | Enables the "Github Sponsor" button which redirects to GitHub. Only pass in the user name instead of the url. |
9494

9595
## Storage Provider
9696
Currently, there are 4 Storage-Provider:

0 commit comments

Comments
 (0)