Skip to content

Commit

Permalink
feat: ✨ Init and teamstucture
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim567 committed Sep 5, 2023
0 parents commit 60c5f58
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Generate PlantUML Diagrams
on:
push:
paths:
- "**.puml"
jobs:
generate_plantuml:
runs-on: ubuntu-latest
name: plantuml
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: plantuml
id: plantuml
uses: grassedge/[email protected]
with:
path: render
message: "Render PlantUML files"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
91 changes: 91 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix


# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# AWS User-specific
.idea/**/aws.xml

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# SonarLint plugin
.idea/sonarlint/

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
38 changes: 38 additions & 0 deletions projectplan/teamstructure.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
@startuml Team Structure
package "Windesheim AI-app" <<Rectangle>> {
object "Wim Rill" as coach {
Schoolcoach
}
object "Rob van de Star" as productowner {
Product Owner
}
object "Yannick Bruintjes" as YB {
Teamlead
Developer
}
object "Tim Bentum" as TB {
SCRUM Master
Developer
}
object "Jorim Dijkstra" as JD {
Developer
}
object "Rick Koekkoek" as RK {
Developer
}
object "MinSeo Lee" as ML {
Developer
}
object "Koen van Meijeren" as KvM {
Developer
}

productowner-[dashed]-YB
productowner-[dashed]-TB
productowner-[dashed]-JD
productowner-[dashed]-RK
productowner-[dashed]-ML
productowner-[dashed]-KvM
}

@enduml

0 comments on commit 60c5f58

Please sign in to comment.