web app for working with Project Breakdown Structures http://pbsapp.divshot.io
 
 
 
 
Go to file
Enrico Fasoli 6aee9ae033 splitted calculate() into different functions 2015-04-11 09:24:35 +02:00
src splitted calculate() into different functions 2015-04-11 09:24:35 +02:00
.gitignore fixed resource view 2015-04-10 08:46:28 +02:00
README.md changed name of project to pbs 2015-04-01 18:07:47 +02:00
bower.json angular and angular-ui-router now functional 2015-03-31 19:33:38 +02:00
divshot.json added html5 pushstate support 2015-04-01 19:58:23 +02:00
gulpfile.js more gui work 2015-04-01 13:01:53 +02:00
package.json more gui work 2015-04-01 13:01:53 +02:00

README.md

PBS

PBS is a small web app built to assist in working with Project Breakdown Structures.

It should be accessible here

Features

It's still in development.

  • can calculate (almost) every info that can be retrieved from the minimum amount of data
  • can draw a (almost correct and thorough) pert diagram
  • can (almost) draw a timeline of the project

Data format

This is a valid input document (extra data is ignored but not thrashed):

[
  {"id": 0, "duration": 3},
  {"id": 1, "duration": 1},
  {"id": 2, "duration": 2, "depends": [0]},
  {"id": 3, "duration": 5, "depends": [1]},
  {"id": 4, "duration": 5, "depends": [1]},
  {"id": 5, "duration": 2, "depends": [2,3,4]}
]

Development

  1. Clone the repo
  2. make sure you have gulp
  3. run npm install && bower install && gulp to build the project
  4. the resulting static website is in dist/

License

MIT