62 lines
1.1 KiB
JSON
62 lines
1.1 KiB
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "festifun-api",
|
|
"runtimeExecutable": "uv",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"python",
|
|
"-m",
|
|
"festival4d",
|
|
"serve"
|
|
],
|
|
"port": 8000,
|
|
"autoPort": false
|
|
},
|
|
{
|
|
"name": "festifun-web",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev",
|
|
"--prefix",
|
|
"frontend"
|
|
],
|
|
"port": 5173,
|
|
"autoPort": false
|
|
},
|
|
{
|
|
"name": "festifun-web-alt",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev",
|
|
"--prefix",
|
|
"frontend",
|
|
"--",
|
|
"--port",
|
|
"5177",
|
|
"--strictPort"
|
|
],
|
|
"port": 5177,
|
|
"autoPort": false
|
|
},
|
|
{
|
|
"name": "festifun-web-dist",
|
|
"runtimeExecutable": "uv",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"python",
|
|
"-m",
|
|
"http.server",
|
|
"5174",
|
|
"--directory",
|
|
"/Users/m3ultra/Documents/festifun/frontend/dist"
|
|
],
|
|
"port": 5174,
|
|
"autoPort": false
|
|
}
|
|
]
|
|
}
|