https://github.com/paratron/tinyprogress
TinyProgress lets you setup a page for displaying your project progress quickly.
https://github.com/paratron/tinyprogress
Last synced: 3 months ago
JSON representation
TinyProgress lets you setup a page for displaying your project progress quickly.
- Host: GitHub
- URL: https://github.com/paratron/tinyprogress
- Owner: Paratron
- Created: 2011-12-19T22:16:55.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-12-20T09:30:30.000Z (about 14 years ago)
- Last Synced: 2025-07-15T20:23:22.671Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 106 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
About TinyProgress
==================
TinyProgress is a tool to display the development progress of a project both to yourself and your colleagues and/or customers.
Made with beautiful HTML5 + CSS3.
How to use
----------
Create a new JSON file in the `lib/progress/` folder, containing the progress information you want to display.
The file structure is the following:
{
"project": {
"name": "My Project name",
"description": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor."
},
"milestones": {
"milestone name 1":{
"feature name 1":{
"description": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.",
"tasks": {
"Task 1": "1/5",
"Task 2": 22,
"Task whatever": 10
}
},
"feature name 2":{
"description": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.",
"tasks": {
"Task 1": "1/5",
"Task 2": 22,
"Task whatever": 10
}
}
},
"milestone name 2":{
},
"milestone name x":{
}
}
}