baseline: OpenMU upstream b5a0961 (fresh source)

This commit is contained in:
Acentech Dev
2026-07-14 19:00:35 +03:00
parent 450402e47d
commit 36fc125d5c
11968 changed files with 748705 additions and 0 deletions

13
dev.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
function generate_certificates {
docker run --rm --entrypoint "" \
-v $PWD/certificates:/certificates \
mcr.microsoft.com/dotnet/sdk:5.0 \
sh -c "dotnet dev-certs https --clean && dotnet dev-certs https -ep /certificates/aspnetapp.pfx -p ${1}"
if [ $? == 0 ]; then
export CERTIFICATE_PASSWORD=${1}
echo "success"
fi
}