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: README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@
45
45
46
46
# Genocs .NET library
47
47
48
-
This repo contains a set of libraries to build LOB (Line Of Business) applications. The library is open source and built to be PRODUCTION READY. The library is built on top of .NET8, it is designed and maintained by Genocs.
48
+
This repo contains a set of libraries to build LOB (Line Of Business) applications. The library is open source and built to be PRODUCTION READY. The library is built on top of .NET9, it is designed and maintained by Genocs.
49
49
50
50
Packages are available on [NuGet Genocs](https://www.nuget.org/profiles/gioema_nocco).
51
51
@@ -74,9 +74,18 @@ You can use **Docker compose** to setup the infrastructure components just by ru
74
74
```bash
75
75
cd ./containers
76
76
# Setup the infrastructure
77
-
docker compose -f ./infrastructure-bare.yml --env-file ./.env --project-name genocs up -d
77
+
docker compose -f ./infrastructure.yml --env-file ./.env --project-name genocs up -d
78
+
79
+
# Use this file only in case you want to setup Redis and Postgres db (no need if you use mongo)
80
+
docker compose -f ./infrastructure-db.yml --env-file ./.env --project-name genocs up -d
81
+
82
+
# Use this file only in case you want to setup monitoring infrastructure components (Prometheus, Grafana, InfluxDB, Jaeger, Seq)
78
83
docker compose -f ./infrastructure-monitoring.yml --env-file ./.env --project-name genocs up -d
84
+
85
+
# Use this file only in case you want to setup scaling infrastructure components (Fabio, Consul)
79
86
docker compose -f ./infrastructure-scaling.yml --env-file ./.env --project-name genocs up -d
87
+
88
+
# Use this file only in case you want to setup security infrastructure components (Vault)
80
89
docker compose -f ./infrastructure-security.yml --env-file ./.env --project-name genocs up -d
81
90
82
91
# Use this file only in case you want to setup sqlserver database (no need if you use postgres)
0 commit comments