2024-09-18 20:27:33 +00:00

66 lines
2.3 KiB
JSON

{
"version": "8.0.0",
"description": "A document database with the scalability and flexibility.",
"homepage": "https://www.mongodb.org",
"license": {
"identifier": "SSPL-1.0",
"url": "https://www.mongodb.com/licensing/server-side-public-license"
},
"notes": [
"Windows server 2012/2008 and Windows 7/8/8.1 need KB2999226 to provide Universal C Runtime support for Windows.",
"For more infomations, please refer to:",
"https://support.microsoft.com/en-us/help/2999226/update-for-universal-c-runtime-in-windows",
"",
"mongod shim use \"$dir\\bin\\mongod.cfg\" as the default config file.",
"To use a different config file, please run",
"\"$dir\\bin\\mongod.exe --config NEW_CONFIG_FILE\""
],
"suggest": {
"vcredist": "extras/vcredist2022",
"MongoDB Shell": "extras/mongosh"
},
"architecture": {
"64bit": {
"url": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-8.0.0-signed.msi",
"hash": "778f03552b6638822c18a9a2e8996d31cf12e4c9b87ffc73be8ce71e0a8465e9",
"extract_dir": "MongoDB\\Server\\8.0"
}
},
"pre_install": [
"if (!(Test-Path \"$persist_dir\\bin\\mongod.cfg\")) {",
" $cfg = Get-Content \"$dir\\bin\\mongod.cfg\"",
" $cfg = $cfg -replace '%MONGO_DATA_PATH%', \"$dir\\data\"",
" $cfg = $cfg -replace '%MONGO_LOG_PATH%', \"$dir\\log\"",
" Set-Content \"$dir\\bin\\mongod.cfg\" $cfg -Encoding Ascii -Force",
"}"
],
"bin": [
[
"bin\\mongod.exe",
"mongod",
"--config \"$dir\\bin\\mongod.cfg\""
],
"bin\\mongos.exe"
],
"persist": [
"bin\\mongod.cfg",
"data",
"log"
],
"checkver": {
"url": "http://downloads.mongodb.org/current.json",
"regex": "\"version\"\\:\\s+\"([\\d.]+)\""
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-$version-signed.msi",
"extract_dir": "MongoDB\\Server\\$majorVersion.$minorVersion"
}
},
"hash": {
"url": "$url.sha256"
}
}
}