Files
flixcooks-website/.claude/launch.json
T

18 lines
401 B
JSON
Raw Normal View History

{
"version": "0.0.1",
"configurations": [
{
"name": "Dev DB (Postgres only)",
"runtimeExecutable": "docker",
"runtimeArgs": ["compose", "-f", "docker-compose.dev.yml", "up"],
"port": 5432
},
{
"name": "Full stack (PHP app + Postgres)",
"runtimeExecutable": "docker",
"runtimeArgs": ["compose", "up", "--build"],
"port": 8080
}
]
}