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
{"id":21,"name":"techtribes.je","description":"The software architecture model for the techtribes.je system","model":{"people":[{"tags":"Element,Person","id":"4","name":"Administration User","description":"A system administration user, signed in using a Twitter ID.","relationships":[{"tags":"Relationship,Synchronous","id":"21","sourceId":"4","destinationId":"14","description":"Add people, add tribes and manage tribe membership.","interactionStyle":"Synchronous"},{"tags":"Relationship,Synchronous","id":"7","sourceId":"4","destinationId":"1","description":"Add people, add tribes and manage tribe membership","interactionStyle":"Synchronous"},{"tags":"Relationship,Synchronous","id":"202","sourceId":"4","destinationId":"43","description":"uses","interactionStyle":"Synchronous"}],"location":"Unspecified"},{"tags":"Element,Person","id":"2","name":"Anonymous User","description":"Anybody on the web.","relationships":[{"tags":"Relationship,Synchronous","id":"198","sourceId":"2","destinationId":"39","description":"uses" |
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
Person = User | A user of my software system. | | 202,194 | |
SoftwareSystem = Software System | My software system. | | 1627,1154 | |
Relationship = User | Uses | | Software System | | | |
Diagram = System Context | Software System | A short description of this diagram. | A5_Landscape | |
ElementStyle = Element | 650 | 400 | | #ffffff | 36 | | |
ElementStyle = Software System | | | #d34407 | | | | |
ElementStyle = Person | | | #f86628 | | | |
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
import com.structurizr.Workspace; | |
import com.structurizr.api.StructurizrClient; | |
import com.structurizr.componentfinder.ComponentFinder; | |
import com.structurizr.componentfinder.JavadocComponentFinderStrategy; | |
import com.structurizr.componentfinder.StructurizrAnnotationsComponentFinderStrategy; | |
import com.structurizr.model.*; | |
import com.structurizr.view.*; | |
import java.io.File; |
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
using Structurizr.Analysis; | |
using Structurizr.Client; | |
using Structurizr.Model; | |
using Structurizr.View; | |
using System.Linq; | |
namespace Structurizr | |
{ | |
/// <summary> |
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
using Structurizr.Client; | |
using Structurizr.IO.Json; | |
using Structurizr.Model; | |
using Structurizr.View; | |
using System.IO; | |
using System.Linq; | |
namespace Structurizr.Examples | |
{ |
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
# Class diagram Spring PetClinic - System Context | |
digraph G { | |
graph [labelloc=top,label="Spring PetClinic - System Context",fontname="Verdana",fontsize=12]; | |
edge [fontname="Verdana",fontsize=9,labelfontname="Verdana",labelfontsize=9]; | |
node [fontname="Verdana",fontsize=9,shape=record]; | |
c0 [label="Spring PetClinic"] | |
c1 [label="Clinic Employee"] | |
// null | |
c1 -> c0 [label="Uses" , ]; | |
} |
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
package com.structurizr.example.core; | |
import com.structurizr.Workspace; | |
import com.structurizr.api.StructurizrClient; | |
import com.structurizr.model.Model; | |
import com.structurizr.model.Person; | |
import com.structurizr.model.SoftwareSystem; | |
import com.structurizr.model.Tags; | |
import com.structurizr.view.*; |
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
package com.structurizr.example.core; | |
import com.structurizr.Workspace; | |
import com.structurizr.api.StructurizrClient; | |
import com.structurizr.model.Model; | |
import com.structurizr.model.Person; | |
import com.structurizr.model.SoftwareSystem; | |
import com.structurizr.model.Tags; | |
import com.structurizr.view.ElementStyle; | |
import com.structurizr.view.Shape; |
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
package com.structurizr.example.spring.petclinic; | |
import com.structurizr.Workspace; | |
import com.structurizr.api.StructurizrClient; | |
import com.structurizr.componentfinder.ComponentFinder; | |
import com.structurizr.componentfinder.JavadocComponentFinderStrategy; | |
import com.structurizr.componentfinder.SpringComponentFinderStrategy; | |
import com.structurizr.io.json.JsonWriter; | |
import com.structurizr.model.*; | |
import com.structurizr.view.*; |
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
package com.structurizr.example.core; | |
import com.structurizr.Workspace; | |
import com.structurizr.api.StructurizrClient; | |
import com.structurizr.model.*; | |
import com.structurizr.view.*; | |
public class SelfDrivingCarSystem { | |
public static void main(String[] args) throws Exception { |