Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@@ -0,0 +1,28 @@
|
||||
@startuml
|
||||
|
||||
title Article
|
||||
|
||||
cloud web
|
||||
|
||||
node nodejs {
|
||||
TCP -right- [express]
|
||||
[showdown]
|
||||
}
|
||||
|
||||
package data {
|
||||
package "2019/06/18" {
|
||||
component index [
|
||||
index.md
|
||||
image.png
|
||||
...
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
web -down-> TCP : 1. /2019/06/18/title
|
||||
express -down-> index : 2. fetch
|
||||
index -up-> showdown : 3. markdown
|
||||
showdown -left-> express : 4. html
|
||||
express -up-> web : 5. html
|
||||
|
||||
@enduml
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,27 @@
|
||||
@startuml
|
||||
|
||||
title Homepage
|
||||
|
||||
cloud web
|
||||
|
||||
node nodejs {
|
||||
TCP -right- [express]
|
||||
}
|
||||
|
||||
package data {
|
||||
component index [
|
||||
index.ejs
|
||||
style.css
|
||||
...
|
||||
]
|
||||
}
|
||||
|
||||
database list
|
||||
|
||||
web -down-> TCP : 1. root
|
||||
express -down-> index : 2
|
||||
index --> express : 3
|
||||
list -left-> express : 3
|
||||
express -up-> web : 4. html
|
||||
|
||||
@enduml
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
+17
@@ -0,0 +1,17 @@
|
||||
@startuml
|
||||
|
||||
title RSS feed
|
||||
|
||||
cloud web
|
||||
|
||||
node nodejs {
|
||||
TCP -right- [express]
|
||||
}
|
||||
|
||||
database list
|
||||
|
||||
web -down-> TCP : 1. /rss
|
||||
list -left-> express : 2.
|
||||
express -up-> web : 3. xml
|
||||
|
||||
@enduml
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,22 @@
|
||||
@startuml
|
||||
|
||||
title Refresh content
|
||||
|
||||
cloud web
|
||||
|
||||
node nodejs {
|
||||
TCP -right- [express]
|
||||
}
|
||||
|
||||
package data {
|
||||
|
||||
}
|
||||
|
||||
database list
|
||||
|
||||
web -down-> TCP : 1. /webhook
|
||||
express -down-> data : 2. git pull
|
||||
data -up-> express : 3. files data
|
||||
express -right-> list : 4. writes
|
||||
|
||||
@enduml
|
||||
Reference in New Issue
Block a user