puter/packages/terminal/run.json5
2024-04-12 20:53:32 -04:00

24 lines
625 B
Plaintext

{
services: [
{
name: 'term.http',
pwd: './dist',
command: 'npx http-server -p 8082 -S -C "{cert}" -K "{key}"',
},
{
name: 'ansi.http',
pwd: '../phoenix/dist',
command: 'npx http-server -p 8080 -S -C "{cert}" -K "{key}"',
},
{
name: 'term.rollup',
command: 'npx rollup -c rollup.config.js --watch',
pwd: '.'
},
{
name: 'ansi.rollup',
command: 'npx rollup -c rollup.config.js --watch',
pwd: '../phoenix'
},
]
}