Skip to content

Instantly share code, notes, and snippets.

@alexander-mart
Created September 23, 2019 17:45
Show Gist options
  • Save alexander-mart/db4875a122f7c680c297e9d0ecdb1cb5 to your computer and use it in GitHub Desktop.
Save alexander-mart/db4875a122f7c680c297e9d0ecdb1cb5 to your computer and use it in GitHub Desktop.

Fibery domain

graph LR
	style Customer fill:yellow
	style Epic fill:aquamarine
	style Feature fill:yellowgreen
	style Task fill:cornflowerblue
	style Sprint fill:mediumpurple
	style Product fill:#da0c67
	style User_Story fill:lightskyblue
	style Repo fill:orange
	subgraph B_Fibery_elements
		Customer(Лесные) --> Repo(Репо)
		Customer(Лесные) --> Product(retailCRM)
		Product --> Epic
		Repo --> Feature
		Epic --> Feature
		subgraph Software_development
			Sprint --> Feature
			Sprint --> User_Story
			Sprint --> Task
			Feature --> User_Story
			User_Story --> Task1
		end
	end

graph LR
	style Customer fill:yellow
	style Epic fill:aquamarine
	style Feature fill:yellowgreen
	style Task fill:cornflowerblue
	style Sprint fill:mediumpurple
	style Product fill:#da0c67
	style User_Story fill:lightskyblue
	style Repo fill:orange
	subgraph A_Fibery_structure
		Customer --> Repo
		Customer --> Product
		Product --> Epic
		Repo --> Feature
		Epic --> Feature
		subgraph Software_development
			Sprint --> Feature
			Sprint --> User_Story
			Sprint --> Task
			Feature --> User_Story
			User_Story --> Task
		end
	end

graph LR
	style FeatureX fill:yellowgreen
	style Driver fill:#7070db
	subgraph Fibery_structureX
		Driver --> FeatureX
	end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment