mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
24 lines
625 B
Plaintext
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'
|
|
},
|
|
]
|
|
} |