This is a template repo for architecture modelling with a heavy focus on the very basic set-up, decisions, and the tooling to support it.
Current tooling is heavily based on Structurizr and is basically a compilation of different tools.
Here's the description of the setup:
DIP is the tool of choice for interacting with workspace. We're running Docker with Compose. DIP facilitates and unifies interactions.
Structurizr Lite for previewing, editing and interacting with workspace through browser. It's by far the most complex tool for the C4 model, and we're including it by default. Run dip lite
to start it.
Structurizr CLI for exporting, publishing, workspace validation, and some other automation. Sometimes it's just more handy than running Lite
. Run dip cli
to interact with CLI. Alternatively, run dip validate
to validate the workspace, or dip export
to export the workspace.
structurizr-ruby for JRuby scripting and interactive REPL for querying workspace. Run dip repl
to open a REPL session
GitHub Actions for automated deploys.
GitHub Codespaces for editing on the go.
- Install
dip
using their instructions - Run
dip build
to build Docker image with Structurizr Lite, CLI and REPL. - That's it!
The template incorporates the latest version of Structurizr Lite. Run dip lite
to launch it in the current workspace
In case you need Structurizr CLI for validations, export, pushing, or anything else, there are sample commands to run it. Run dip ls
for the full list, but here are the basic ones:
dip cli
– run Structurizr CLIdip validate
– shortcut tostructurizr.sh validate -w workspace.dsl
dip export
– shortcut to... export -w ... -o output/
dip push
– to push the workspace to Structurizr Cloud or On-Premise instance
The template comes with a GitHub action to push the workspace to Structurizr instance, either cloud or on-premise. By default, it launches on workflow_dispatch
, meaning you need to run it automatically from Actions
tab of your repo.
However, if you'd like to run it automatically on each push to main
, feel free to edit .github/workflows/deploy_workspace.yml
and uncomment the following lines:
# push:
# branches:
# - main
That'll make it work for each push to the repo.
If you'd like to use GitHub actions, you'll need to configure environment first. See next section.
If you have a Structurizr workspace on either structurizr.com or an on-premise installation, you'd probably want to upload your local workpace every now and then.
There are basically three ways to do so:
dip push
through structurizr CLI- GitHub Actions
- GitHub Codespaces: use
structurizr.sh push
All of those options require their own credentials. For the sake of uniformity, all the tooling assumes the same variable names everywhere
STRUCTURIZR_WORKSPACE_ID
— workspace ID, what you'd put under-id ...
in CLISTRUCTURIZR_WORKSPACE_KEY
— workspace key,-key ...
STRUCTURIZR_WORKSPACE_SECRET
— workspace secret,-secret ...
STRUCTURIZR_URL
— structurizr instance URL,-url https:/..
If you'd like to have any of those features enabled, you need to supply ENV accordingly.
If you'd like to use dip push
and don't want to handle env yourself, feel free to create dip.override.yml
with the following contents:
# dip.override.yml
# Don't forget to supply your values!
environment:
STRUCTURIZR_WORKSPACE_ID: id
STRUCTURIZR_WORKSPACE_KEY: key
STRUCTURIZR_WORKSPACE_SECRET: key
STRUCTURIZR_WORKSPACE_URL: https://api.structurizr.com
The main expectation is that you'd use this repo as a template for your workspaces and models. Feel free to fork and modify this repo to fit your own needs.
Right now the most sigificant parts of the model look like this:
.
├── docs
│ └── 01-test.md
│ ├── .keep
├── output
│ ├── .keep
├── workspace.dsl
└── workspace.json
Basically, what we've got are:
- Workspace files -- both DSL and JSON files. DSL is supposed to be authored by us, while JSON is supposed to be generated by CLI or Structurizr Lite.
docs
directory for documentation. It contains an example of embedding diagrams.output
directory for all of the CLI-generated outputs. It's gitignored, so feel free to put anything there
This code is licensed under the MIT license.
However, this repository distributes and incorporates other people's works.
This repository contains a derivative of arc42 8.0 at docs/arc42
Modifications:
- Removed images, config and root file
src
directory is nowarc42
This content is licensed under Creative Commons Attribution-ShareAlike 4.0 International License.
Dockerfile contains code from JRuby's official Docker image. It is licensed under MIT. You can see the copyright at JRuby Docker repo.