Fixed ratelimiting and added docker support

This commit is contained in:
callum5892
2026-03-15 14:56:55 +00:00
parent b1b9d5772e
commit c797a7cba1
10 changed files with 233 additions and 13 deletions

View File

@@ -1,12 +1,16 @@
{
"name": "binit.app Dev Container",
"image": "mcr.microsoft.com/devcontainers/javascript-node:24-bookworm",
"forwardPorts": [3000],
"portsAttributes": {
"3000": {
"label": "App",
"onAutoForward": "notify"
}
},
"postCreateCommand": "npm install"
}
"name": "Minipaste Dev Container",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace",
"forwardPorts": [3000, 9000, 9001],
"portsAttributes": {
"3000": {
"label": "App",
"onAutoForward": "notify"
},
"9000": { "label": "MinIO S3 API" },
"9001": { "label": "MinIO Console" }
},
"postCreateCommand": "npm install"
}