You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- InMemory - Basically a list holding your data (per request). If the User hits a hard reload, the data is gone.
31
-
- RavenDb - As the name suggests for RavenDb. RavenDb automatically creates all the documents, if a database name is provided.
32
-
- Sqlite - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
33
-
- SqlServer - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
34
-
- MySql - Based on EF Core - also supports MariaDB.
35
-
36
-
The default (when you clone the repository) is the `InMemory` option. That means every time you restart the service, all posts and related objects are gone.
37
-
38
26
## Donations
39
27
40
28
The blog software allows you to integrate via different micro-transaction services. The following chapter will show you how to set up donations.
@@ -81,16 +69,3 @@ Furthermore, the following tags are set:
81
69
## RSS Feed
82
70
83
71
This blog also offers an RSS feed ([RSS 2.0 specification](https://validator.w3.org/feed/docs/rss2.html)), which can be consumed by your users or programs like Feedly. Just append `feed.rss` to your URL or click on the RSS feed icon in the navigation bar to get the feed. The RSS feed does not expose the whole content of a given blog post but its title and short description including some other tags like preview image, publishing date and so on.
84
-
85
-
Note the ConnectionString format of SQL Server needs to be consistent:
- InMemory - Basically a list holding your data (per request). If the User hits a hard reload, the data is gone.
6
+
- RavenDb - As the name suggests for RavenDb. RavenDb automatically creates all the documents, if a database name is provided.
7
+
- Sqlite - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
8
+
- SqlServer - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
9
+
- MySql - Based on EF Core - also supports MariaDB.
10
+
11
+
The default (when you clone the repository) is the `InMemory` option. That means every time you restart the service, all posts and related objects are gone.
12
+
13
+
Note the ConnectionString format of SQL Server needs to be consistent:
0 commit comments