Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit f32100d

Browse files
author
Will Anderson
committed
Add scripts to start and stop the packager
1 parent b867b4d commit f32100d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

start-packager.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
npm start &
4+
lsof -t -i4TCP:8081

stop-packager.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
kill -9 `lsof -t -i4TCP:8081`

0 commit comments

Comments
 (0)