Skip to content

Commit 00229e3

Browse files
committed
Merge pull request #35 from ParsePlatform/default-config
Default config that includes no apps
2 parents 637e7c2 + 86f971a commit 00229e3

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ node_modules/
33
bundles/
44
PIG/bundles/
55
Parse-Dashboard/public/bundles/
6-
Parse-Dashboard/parse-dashboard-config.json
76

87
npm-debug.log
98

CONTRIBUTING.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ We want to make contributing to this project as easy and transparent as
33
possible.
44

55
## Our Development Process
6-
When working on the dashboard, use `npm run dashboard` and visit `localhost:4040` to see your dashboard.
6+
The standard installation method also clones the git repository, so you can start making and submitting changes right away.
77

8-
When working on components, use `npm run pig` and visit `localhost:4041` to view our component library and documentation (you can have both running at once). The demos for each component are the primary way we test components, although there are also a small number of automated tests you can run with `npm test`.
8+
When working on the dashboard, use `npm run dashboard` and visit `localhost:4040` to see your dashboard. The `npm` script will automatically re-build your files when you change them, so after making a change, all you need to do is refresh the page.
9+
10+
When working on React components, use `npm run pig` and visit `localhost:4041` to view our component library and documentation (you can have both running at once). The demos for each component are the primary way we test components, although there are also a small number of automated tests you can run with `npm test`.
911

1012
## Pull Requests
1113
We actively welcome your pull requests.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"apps": [
3+
4+
]
5+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
"pig": "http-server ./PIG -p 4041 -s & webpack --config PIG.config.js --progress --watch",
3939
"build": "NODE_ENV=production webpack --config production.config.js && webpack --config PIG.config.js",
4040
"test": "NODE_PATH=./node_modules jest",
41-
"generate": "node scripts/generate.js"
41+
"generate": "node scripts/generate.js",
42+
"preinstall": "git update-index --skip-worktree Parse-Dashboard/parse-dashboard-config.json"
4243
},
4344
"jest": {
4445
"testPathDirs": [

0 commit comments

Comments
 (0)