web app for working with Project Breakdown Structures http://pbsapp.divshot.io
 
 
 
 
Go to file
Enrico Fasoli 15bb6d220d ooops 2016-04-14 10:06:54 +02:00
.gitignore first version on ghpages 2016-04-14 10:03:36 +02:00
PBSlib.js first version on ghpages 2016-04-14 10:03:36 +02:00
README.html first version on ghpages 2016-04-14 10:03:36 +02:00
activities.html first version on ghpages 2016-04-14 10:03:36 +02:00
angular-ui-router.js first version on ghpages 2016-04-14 10:03:36 +02:00
angular.js first version on ghpages 2016-04-14 10:03:36 +02:00
app.js ooops 2016-04-14 10:06:54 +02:00
bootstrap.css first version on ghpages 2016-04-14 10:03:36 +02:00
bootstrap.js first version on ghpages 2016-04-14 10:03:36 +02:00
collapse.js first version on ghpages 2016-04-14 10:03:36 +02:00
controllers.js first version on ghpages 2016-04-14 10:03:36 +02:00
divshot.json first version on ghpages 2016-04-14 10:03:36 +02:00
edit.html first version on ghpages 2016-04-14 10:03:36 +02:00
gantt.html first version on ghpages 2016-04-14 10:03:36 +02:00
index.html first version on ghpages 2016-04-14 10:03:36 +02:00
jquery.js first version on ghpages 2016-04-14 10:03:36 +02:00
moment.js first version on ghpages 2016-04-14 10:03:36 +02:00
package.json first version on ghpages 2016-04-14 10:03:36 +02:00
pert.html first version on ghpages 2016-04-14 10:03:36 +02:00
rawedit.html first version on ghpages 2016-04-14 10:03:36 +02:00
resources.html first version on ghpages 2016-04-14 10:03:36 +02:00
style.css first version on ghpages 2016-04-14 10:03:36 +02:00
sweet-alert.css first version on ghpages 2016-04-14 10:03:36 +02:00
sweet-alert.js first version on ghpages 2016-04-14 10:03:36 +02:00
vis.min.css first version on ghpages 2016-04-14 10:03:36 +02:00
vis.min.js first version on ghpages 2016-04-14 10:03:36 +02:00
welcome.html first version on ghpages 2016-04-14 10:03:36 +02:00

README.html

<h1 id="pbs">PBS</h1><p>PBS is a small web app built to assist in working with Project Breakdown Structures.</p><p>It should be accessible <a href="http://pbsapp.divshot.io">here</a></p><h2 id="features">Features</h2><p>It&#39;s still in development.</p><ul><li>can calculate (almost) every info that can be retrieved from the minimum amount of data</li><li>can draw a (almost correct and thorough) pert diagram</li><li>can (almost) draw a timeline of the project</li></ul><h2 id="data-format">Data format</h2><p>This is a valid input document (extra data is ignored but not thrashed):</p><pre><code class="lang-json">[
  {&quot;id&quot;: 0, &quot;duration&quot;: 3},
  {&quot;id&quot;: 1, &quot;duration&quot;: 1},
  {&quot;id&quot;: 2, &quot;duration&quot;: 2, &quot;depends&quot;: [0]},
  {&quot;id&quot;: 3, &quot;duration&quot;: 5, &quot;depends&quot;: [1]},
  {&quot;id&quot;: 4, &quot;duration&quot;: 5, &quot;depends&quot;: [1]},
  {&quot;id&quot;: 5, &quot;duration&quot;: 2, &quot;depends&quot;: [2,3,4]}
]
</code></pre><h2 id="development">Development</h2><ol><li>Clone the repo</li><li>make sure you have <a href="http://gulpjs.com">gulp</a></li><li>run <code>npm install &amp;&amp; bower install &amp;&amp; gulp</code> to build the project</li><li>the resulting static website is in <code>dist/</code></li></ol><h2 id="license">License</h2><p>MIT</p>