mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 06:15:47 +00:00
16 lines
371 B
Plaintext
16 lines
371 B
Plaintext
|
{
|
||
|
services: [
|
||
|
{
|
||
|
name: 'shell.http',
|
||
|
pwd: './dist',
|
||
|
// command: 'npx http-server -p 8080 -S -C "{cert}" -K "{key}"',
|
||
|
command: 'npx http-server -p 8080',
|
||
|
},
|
||
|
{
|
||
|
name: 'shell.rollup',
|
||
|
command: 'npx rollup -c rollup.config.js --watch',
|
||
|
pwd: '.'
|
||
|
},
|
||
|
],
|
||
|
}
|