Last active
February 14, 2022 19:47
-
-
Save mikeananev/4c966ccf684e526004691dd17e30a7c8 to your computer and use it in GitHub Desktop.
Gantt template for feature. See: https://github.com/redstarssystems/gantt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
:scale "900*1200" ;; размер картинки | |
:project-title "Полное название фичи (короткое название)" | |
:project-header "План на 10-02-2022" ;; Дата обновления плана | |
:project-starts "2022-02-10" | |
:project-scale-zoom {:scale :daily :zoom 1} | |
:tasks-colors {:color/in-progress "GreenYellow/Red" | |
:color/completed "GreenYellow/Green"} | |
:closed-days #{:saturday :sunday} ;; выходные | |
:holidays ["2022-02-23"] ;; праздники | |
:today {:days-after-start 0 :color "#AAF"} ;; день сегодняшний. Нужно обновлять регулярно. | |
:project-content | |
[ | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
{:separator "Аналитика"} | |
{:task "Анализ бизнес-требований" | |
:alias :a1 | |
:resources [#_"Фамилия1" #_"Фамилия2:50%" #_"Фамилия3:100%"] | |
;;:starts-at "2022-02-10" | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 4 | |
:percent-complete 100} | |
{:milestone "Бизнес-требования готовы" | |
:happens-after [:a1]} | |
{:task "Анализ системных требований" | |
:alias :a2 | |
:resources [#_"Фамилия1" #_"Фамилия2:50%"] | |
:starts-after :a1 | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 4 | |
:percent-complete 0} | |
{:milestone "Системные требования готовы" | |
:happens-after [:a2]} | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
{:separator "Разработка"} | |
{:task "dev task 1" | |
:alias :dev1 | |
:resources [#_"Фамилия И."] | |
:starts-after :a2 | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 3 | |
:percent-complete 0} | |
{:task "dev task 2" | |
:alias :dev2 | |
:resources [#_"Фамилия И."] | |
:starts-after :dev1 | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 3 | |
:percent-complete 0} | |
{:milestone "Разработка завершена" | |
:happens-after [:dev2]} | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
{:separator "QA Тестирование"} | |
{:task "Тесты новой функциональности" | |
:alias :t0 | |
:resources [#_"Фамилия И."] | |
:starts-after :dev2 | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 2 | |
:percent-complete 0} | |
{:task "Регресс" | |
:alias :t1 | |
:resources [#_"Фамилия И."] | |
:starts-after :t0 | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 2 | |
:percent-complete 0} | |
{:milestone "Тестирование завершено" | |
:happens-after [:t1]} | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
{:separator "Релиз"} | |
{:task "Накатка миграций" | |
:alias :r1 | |
:resources [#_"Фамилия И."] | |
:starts-after :t1 | |
;;:pause-on-days ["2022-02-15"] | |
:days-lasts 1 | |
:percent-complete 0} | |
{:milestone "Релиз внедрен" | |
:happens-after [:r1]} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment