11Global application settings saved in the ` appsettings.json ` file.
2- It is read/write so, when admin updates settings in UI, they also written in the file.
3- When file is updated, admin screen will also pull updated value from the file.
42
53```
64"Blogifier": {
75 "DbProvider": "SQLite",
86 "ConnString": "DataSource=app.db",
9- "Title": "Blog title",
10- "Description": "Short description of the blog",
11- "Cover": "data/admin/cover-desk.jpg",
12- "Logo": "lib/img/logo-white.png",
137 "Avatar": "lib/img/avatar.jpg",
14- "Theme": "Standard",
15- "BlogThemes": null,
16- "ItemsPerPage": 10,
17- "UseDescInPostList": true,
188 "ImportTypes": "zip,7z,xml,pdf,doc,docx,xls,xlsx,mp3,avi",
199 "ImageExtensions": "png,jpg,gif,bmp,tiff",
2010 "DemoMode": true
@@ -27,9 +17,7 @@ Most settings are self-explanatory, here some that might require clarification:
2717
2818` DbProvider ` and ` ConnectionString ` are used when you need to switch to another database, like MS SQL Server or PostgreSQL
2919
30- ` ItemsPerPage ` sets page size for all lists in application, so everything that requires paging will use it
31-
32- ` UseDescInPostList ` when set to ` true ` returns post description instead of content in the post lists
20+ ` ItemsPerPage ` sets page size for all lists in the application, so everything that requires paging will use it
3321
3422` ImportTypes ` defines what type of files should be downloaded when importing posts from RSS feed
3523
0 commit comments