mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
20 lines
424 B
JSON
20 lines
424 B
JSON
{
|
|
"version": "1.0",
|
|
"name": "test-app",
|
|
"build": {
|
|
"type": "nixpacks",
|
|
"install_command": "npm install",
|
|
"build_command": "npm run build",
|
|
"start_command": "npm start"
|
|
},
|
|
"domains": {
|
|
"ports_exposes": "3000"
|
|
},
|
|
"environment_variables": {
|
|
"production": [
|
|
{"key": "DB_PASSWORD", "value": "SERVICE_PASSWORD_64"},
|
|
{"key": "APP_SECRET", "value": "SERVICE_BASE64_32"}
|
|
]
|
|
}
|
|
}
|