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
Copy file name to clipboardExpand all lines: src/Templates/Boilerplate/Bit.Boilerplate/README.md
+66-3Lines changed: 66 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,71 @@
2
2
3
3
Thank you for creating a new project with bit platform! We appreciate your trust in our platform and are excited to see what you'll build.
4
4
5
+
This project gets generated by bit-bp template v-9.11.3 using the following command
6
+
```bash
7
+
dotnet new bit-bp
8
+
--name Boilerplate
9
+
<!--#if (database == "SqlServer")-->
10
+
--database SqlServer
11
+
<!--#elif (database == "PostgreSQL")-->
12
+
--database PostgreSQL
13
+
<!--#elif (database == "MySql")-->
14
+
--database MySql
15
+
<!--#elif (database == "Other")-->
16
+
--database Other
17
+
<!--#endif-->
18
+
<!--#if (filesStorage == "S3")-->
19
+
--filesStorage S3
20
+
<!--#elif (filesStorage == "AzureBlobStorage")-->
21
+
--filesStorage AzureBlobStorage
22
+
<!--#elif (filesStorage == "Other")-->
23
+
--filesStorage Other
24
+
<!--#endif-->
25
+
<!--#if (api == "Standalone")-->
26
+
--api Standalone
27
+
<!--#endif-->
28
+
<!--#if (pipeline == "Azure")-->
29
+
--pipeline Azure
30
+
<!--#elif (pipeline == "None")-->
31
+
--pipeline None
32
+
<!--#endif-->
33
+
<!--#if (module == "Admin")-->
34
+
--module Admin
35
+
<!--#elif (module == "Sales")-->
36
+
--module Sales
37
+
<!--#endif-->
38
+
<!--#if (captcha == "reCaptcha")-->
39
+
--captcha reCaptcha
40
+
<!--#endif-->
41
+
<!--#if (aspire == true)-->
42
+
--aspire
43
+
<!--#endif-->
44
+
<!--#if (notification == true)-->
45
+
--notification
46
+
<!--#endif-->
47
+
<!--#if (sample == true)-->
48
+
--sample
49
+
<!--#endif-->
50
+
<!--#if (sentry == true)-->
51
+
--sentry
52
+
<!--#endif-->
53
+
<!--#if (appInsights == true)-->
54
+
--appInsights
55
+
<!--#endif-->
56
+
<!--#if (signalR == true)-->
57
+
--signalR
58
+
<!--#endif-->
59
+
<!--#if (offlineDb == true)-->
60
+
--offlineDb
61
+
<!--#endif-->
62
+
<!--#if (cloudflare == false)-->
63
+
--cloudflare false
64
+
<!--#endif-->
65
+
<!--#if (ads == true)-->
66
+
--ads
67
+
<!--#endif-->
68
+
```
69
+
5
70
## Documentation
6
71
7
72
To help you get started, we have comprehensive documentation available. You can find detailed guides, samples, and more at:
@@ -10,6 +75,4 @@ To help you get started, we have comprehensive documentation available. You can
10
75
11
76
If you have any questions or need further assistance, feel free to [reach out](https://github.com/bitfoundation/bitplatform/issues/new/choose). Happy coding!
0 commit comments