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

Added architecture design for system #4

Merged
merged 1 commit into from
Jul 29, 2023
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
46 changes: 46 additions & 0 deletions architecture/workspace.dsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
workspace {

model {
user = person "User"
job_hunting_site_1 = softwareSystem "Job Hunting Site 1"
job_hunting_site_2 = softwareSystem "Job Hunting Site 2"
job_hunting_site_n = softwareSystem "Job Hunting Site n"
softwareSystem = softwareSystem "Job Scanner" {
frontend = container "Frontend" "Serves content" React
db = container "Database" "" PostgresQL
backend = container "Backend" {
scraper = component "Scraper Service" "" Django
api = component "API Service" "" Django
}
}
user -> frontend "Uses"
frontend -> api "Uses"
api -> db "Reads/Writes"
scraper -> db "Reads/Writes"
scraper -> job_hunting_site_1 "Scrapes from"
scraper -> job_hunting_site_2 "Scrapes from"
scraper -> job_hunting_site_n "Scrapes from"
}

views {
systemContext softwareSystem {
include *
autolayout lr
}

container softwareSystem {
include *
autolayout lr
}

component Backend {
include *
autolayout lr
}


theme default

}

}
Binary file added architecture/workspace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.