Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add system context diagram #296

Merged
merged 4 commits into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
SVG_DIAGRAMS := $(patsubst %.puml,%.svg,$(wildcard *.puml))

all: $(SVG_DIAGRAMS)

$(SVG_DIAGRAMS): %.svg: %.puml
plantuml -tsvg $<

clean:
rm -f $(SVG_DIAGRAMS)

.PHONY: all clean
88 changes: 88 additions & 0 deletions docs/meetup-slides-2022-10-12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---
author: Jan Dittberner
date: 12.10.2022
paging: Seite %d von %d
---

```
making of
____ ____
| _ \ _____ __ | _ \ __ _ _ _
| | | |/ _ \ \ / / | | | |/ _` | | | |
| |_| | __/\ V / | |_| | (_| | |_| |
|____/ \___| \_/ |____/ \__,_|\__, |
|___/
website
```

**SECO-Meetup** https://seco.rocks/

---

# Agenda

## Architekturüberblick

## Technologiestack

## Entwicklung + Hands-On/Demo

## Mögliche neue Architektur

## Q&A + Mitmachmöglichkeiten

---

# Architekturüberblick

[Diagramme](https://github.com/jandd/devday_website/tree/architecture-diagrams/docs)

---

# Technologiestack

- Ansible (Deployment)
- Angular (Twitterwall)
- Bootstrap (CSS framework)
- [Django](https://www.djangoproject.com/)
- [Django CMS](https://www.django-cms.org/)
- Docker
- Gulp (Builder für CSS und JavaScript)
- HashiCorp Vault (Credential management)
- Postfix
- PostgreSQL 🐘
- Python 🐍
- nginx
- sass (CSS precompiler)
- uWSGI

---

# Entwicklung

[Code repository](https://github.com/devdaydresden/devday_website)

## Demo / Hands-On

---

# Mögliche neue Architektur

---

# Q&A

## Wie weiter

- Dev Day ist ein Mitmach-Projekt

- Kuratoren gesucht
- Weitere Entwickler für Webseite gesucht (Frontend Angular & Backend Python + Django)
- Ideen für SpeakerInnen, Sessions, Rahmenprogramm und Sponsoren? Her damit! 😎

- [Issue tracker](https://github.com/devdaydresden/devday_website/issues)

## Kontakt

- [Ihr wollt beim Dev Day mitmachen?](mailto:info@devday.de)
- [Ihr habt Detailfragen zur Webseite?](mailto:jan.dittberner@t-systems.com)
48 changes: 48 additions & 0 deletions docs/system_context.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
@startuml
!include <C4/C4_Context.puml>

title Context diagram Dev Day Website

Enterprise_Boundary(MMSBT, "T-Systems MMS BT&E") {
System(ReverseProxy, "Reverse Proxy", "MMS reverse proxy")
System_Boundary(DevDay, "Dev Day applications") {
System(DevDayWebsite, "Dev Day website", "Dev Day Website application")
System(TwitterWall, "Dev Day Twitterwall", "Dev Day Twitter wall")
}
System(Vault, "Vault", "Hashicorp Vault Secret Manager")
System(PostgreSQL, "PostgreSQL", "PostgreSQL database")
System(TMS, "Mail system", "technical mail system")

Person(DevDayAdmin, "Dev Day admin")
}

System(TwitterAPI, "Twitter API", "Twitter's public API endpoints")

Person(DevDayTeam, "Dev Day team member")
Person(DevDaySpeaker, "Dev Day speaker (potential and selected speakers)")
Person(DevDaySponsor, "Dev Day sponsor")
Person(DevDayAttendee, "Dev Day attendee")
Person(DevDayCommittee, "Dev Day program committee")

System(ScreenAtDevDay, "Twitter Wall screen", "Large Twitter wall screen at the Dev Day venue")

Rel_D(ReverseProxy, DevDayWebsite, "forward user traffic")
Rel_D(ReverseProxy, TwitterWall, "forward user traffic")

Rel(ScreenAtDevDay, ReverseProxy, "Get Twitter wall content")

Rel(DevDayWebsite, Vault, "fetch secrets")
Rel(DevDayWebsite, PostgreSQL, "read and write application data")
Rel(DevDayWebsite, TwitterAPI, "fetch Dev Day related tweets")
Rel(DevDayWebsite, TMS, "send bulk and individual mails")

Rel_R(TwitterWall, DevDayWebsite, "get tweet information")

Rel(DevDayAdmin, DevDayWebsite, "administration and configuration")
Rel(DevDayTeam, ReverseProxy, "content editing, mail editing")
Rel(DevDaySponsor, ReverseProxy, "request sponsorship")
Rel(DevDaySpeaker, ReverseProxy, "add and modify talks")
Rel(DevDayAttendee, ReverseProxy, "register for events, workshops, manage profile")
Rel(DevDayCommittee, ReverseProxy, "evaluate and choose sessions")

@enduml
Loading