-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alyssa Kwan
committed
Dec 18, 2016
1 parent
6e260d4
commit 01b9865
Showing
4 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ npm-debug.log | |
|
||
.DS_Store | ||
.env | ||
|
||
.python-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"name": "mentoring__react_redux_d3__client", | ||
"version": "0.0.0", | ||
"description": "", | ||
"private": true, | ||
"author": "Alyssa Kwan <[email protected]>", | ||
"license": "Unlicense", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const childProcess = require('child_process'); | ||
|
||
const args = ['start']; | ||
const opts = { | ||
stdio: 'inherit', | ||
cwd: 'client', | ||
shell: true | ||
} | ||
childProcess.spawn('npm', args, opts); |