Codebasis als Dateien ins Arbeitsrepo statt als Gitlink

QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142)
getrackt, ohne .gitmodules und ohne erreichbares Remote. Der
Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar
gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege
der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen.

Umstellung:
- Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert
  (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6)
- Gitlink aus dem Index entfernt
- Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB

Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte
bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
This commit is contained in:
Christoph Schwörer
2026-08-26 07:43:51 +02:00
parent 18edae75b6
commit f045b99a25
24664 changed files with 5846716 additions and 1 deletions
@@ -0,0 +1,5 @@
docker login centron.azurecr.io
docker compose up
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<WebServiceConfig>
<WebServiceAddress>http://localhost:1234/CentronService</WebServiceAddress>
<PublicWebServiceAddress></PublicWebServiceAddress>
<WebServiceCertificateFilePath></WebServiceCertificateFilePath>
<WebServiceCertificatePassword></WebServiceCertificatePassword>
<ActiveDirectoryAuthEnabled>false</ActiveDirectoryAuthEnabled>
<ActiveDirectoryUrl></ActiveDirectoryUrl>
<ActiveDirectoryName></ActiveDirectoryName>
<ActiveDirectoryCertificateHash></ActiveDirectoryCertificateHash>
<DatabaseConnectionString>
</DatabaseConnectionString>
<DatabaseConnectionStringPlain>
Server=db,1433; Database=Centron; User Id=SA; Password=SA!password
</DatabaseConnectionStringPlain>
<UseIncreasedThreadPool>true</UseIncreasedThreadPool>
<ActivateHelpPage>false</ActivateHelpPage>
<ExecuteServices>false</ExecuteServices>
<ProxyAddress></ProxyAddress>
<ProxyPort />
<ProxyUsername />
<ProxyPassword></ProxyPassword>
<TwoFactorAuthEnabled>false</TwoFactorAuthEnabled>
<TwoFactorAuthType>RadiusServer</TwoFactorAuthType>
<RadiusServerAddress></RadiusServerAddress>
<RadiusServerSecret></RadiusServerSecret>
<RadiusServerConnectionTimeoutInSeconds>30</RadiusServerConnectionTimeoutInSeconds>
<RadiusServerNasIdentifier></RadiusServerNasIdentifier>
<RadiusServerNasIpAddress></RadiusServerNasIpAddress>
<MailTwoFactorAuthSenderAddress></MailTwoFactorAuthSenderAddress>
<MailTwoFactorAuthTimeoutInSeconds>120</MailTwoFactorAuthTimeoutInSeconds>
<TwoFactorValidDurationInDays>0</TwoFactorValidDurationInDays>
<SecretKey>ThisIsASecretKey</SecretKey>
</WebServiceConfig>
@@ -0,0 +1,58 @@
{
"NLog": {
"autoReload": true,
"Targets": {
"async": true,
"ConsoleTarget": {
"type": "Console",
"layout": "${longdate}|${level:uppercase=true}|${logger}|${message}${onException:inner=${newline}${exception:format=toString:maxInnerExceptionLevel=10}}"
},
"CsvFileTarget": {
"type": "File",
"fileName": "${specialfolder:folder=CommonApplicationData}/c-entron software gmbh/CentronNexus/Logs/logs-${date:format=yyyy.MM.dd}.csv",
"layout": "${longdate},${level:uppercase=true},${logger},${message}${onException:inner=${newline}${exception:format=toString:maxInnerExceptionLevel=10}}"
}
},
"Rules": [
{
"logger": "*",
"minLevel": "Warn",
"writeTo": "ConsoleTarget"
}
]
},
"Host": {
"Url": "http://localhost:8050/",
"LinuxCertificatePath": "",
"LinuxCertificatePassword": ""
},
"DetailedErrors": true,
"CentronWebService": {
"Url": "http://centron-webservice-1:1234/CentronService"
},
"WebAccount": {
"HomePageUrl": "https://de.wikipedia.org/"
},
"Notifications": {
"SecretKey": ""
},
"Branding": {
"Logo": "img/logos/logo.png",
"LoginLogo": "img/logos/sb_logo_big.png",
"LoginLogoDarkMode": "img/logos/sb_logo_big.png",
"Favicon": "img/logos/logo.png",
"Title": "c-entron Web",
"ShowLogoWithTitle": true,
"LoginPageText": "Log in to the next experience of ERP",
"LegalNoticeUrl": "https://c-entron.de/impressum/",
"PrivacyPolicyUrl": "https://c-entron.de/datenschutzerklaerung/",
"AgbUrl": "https://c-entron.de/agb/",
"HexColor": "#F09D0B"
},
"OIDC": {
"Authority": "https://login.microsoftonline.com/{TENANT ID}/v2.0",
"ClientId": "",
"ClientSecret": "",
"ResponseType": "code"
}
}
@@ -0,0 +1,50 @@
name: centron
services:
db:
image: centron.azurecr.io/centron_db/centron_demo_db:1
container_name: db
environment:
MSSQL_SA_PASSWORD: SA!password
networks:
- centron
ports:
- "1433:1433"
webservice:
image: centron.azurecr.io/c-entron_webservice:local_alpine3.19
command: /app/Centron.Host.Console
container_name: webservice
environment:
HARDWARE_ID:
depends_on:
- db
volumes:
- ./WebServiceConfig.xml:/app/WebServiceConfig.xml
ports:
- "4321:1234"
networks:
- centron
smtp:
image: centron.azurecr.io/mailcatcher:latest
container_name: centron-smtp-1
ports:
- "1025:1025"
- "1080:1080"
networks:
- centron
nexus:
image: centron.azurecr.io/nexus/nexus:alpine_2409
command: /app/CentronNexus
container_name: nexus
depends_on:
- webservice
volumes:
- ./appsettings.json:/app/appsettings.json
ports:
- "8050:8050"
networks:
- centron
networks:
centron:
driver: bridge