Skip to content

Default config that includes no apps #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ node_modules/
bundles/
PIG/bundles/
Parse-Dashboard/public/bundles/
Parse-Dashboard/parse-dashboard-config.json

npm-debug.log

Expand Down
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ We want to make contributing to this project as easy and transparent as
possible.

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

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`.
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.

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`.

## Pull Requests
We actively welcome your pull requests.
Expand Down
5 changes: 5 additions & 0 deletions Parse-Dashboard/parse-dashboard-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"apps": [

]
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"pig": "http-server ./PIG -p 4041 -s & webpack --config PIG.config.js --progress --watch",
"build": "NODE_ENV=production webpack --config production.config.js && webpack --config PIG.config.js",
"test": "NODE_PATH=./node_modules jest",
"generate": "node scripts/generate.js"
"generate": "node scripts/generate.js",
"preinstall": "git update-index --skip-worktree Parse-Dashboard/parse-dashboard-config.json"
},
"jest": {
"testPathDirs": [
Expand Down