Skip to content

Commit

Permalink
fix: replace tabs by spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Dec 20, 2024
1 parent b786059 commit 663d7c4
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions docs/admin/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,34 +65,34 @@ Architecture overview
label="Third-party services",
style=filled
];
mt [label="Machine translation",
mt [label="Machine translation",
style=dotted];
sentry [label="Sentry\nError collection",
sentry [label="Sentry\nError collection",
style=dotted];
graylog [label="Graylog\nLog collection",
graylog [label="Graylog\nLog collection",
style=dotted];
mail [label="E-mail server"];
auth [label="SSO\nAuthentication provider",
mail [label="E-mail server"];
auth [label="SSO\nAuthentication provider",
style=dotted];
}
subgraph cluster_ingress {
graph [color=lightgrey,
label=Ingress,
style=filled
];
web [label="Web server",
web [label="Web server",
shape=hexagon];
}
subgraph cluster_weblate {
graph [color=lightgrey,
label="Weblate code-base",
style=filled
];
celery [fillcolor="#144d3f",
celery [fillcolor="#144d3f",
fontcolor=white,
label="Celery workers",
style=filled];
wsgi [fillcolor="#144d3f",
wsgi [fillcolor="#144d3f",
fontcolor=white,
label="WSGI server",
style=filled];
Expand All @@ -102,26 +102,26 @@ Architecture overview
label=Services,
style=filled
];
redis [label="Redis\nTask queue\nCache",
redis [label="Redis\nTask queue\nCache",
shape=cylinder];
db [label="PostgreSQL\nDatabase",
db [label="PostgreSQL\nDatabase",
shape=cylinder];
fs [label=Filesystem,
fs [label=Filesystem,
shape=cylinder];
}
web -> wsgi;
web -> fs;
celery -> mt [style=dotted];
celery -> sentry [style=dotted];
celery -> graylog [style=dotted];
celery -> mt [style=dotted];
celery -> sentry [style=dotted];
celery -> graylog [style=dotted];
celery -> mail;
celery -> redis;
celery -> db;
celery -> fs;
wsgi -> mt [style=dotted];
wsgi -> sentry [style=dotted];
wsgi -> graylog [style=dotted];
wsgi -> auth [style=dotted];
wsgi -> mt [style=dotted];
wsgi -> sentry [style=dotted];
wsgi -> graylog [style=dotted];
wsgi -> auth [style=dotted];
wsgi -> redis;
wsgi -> db;
wsgi -> fs;
Expand Down

0 comments on commit 663d7c4

Please sign in to comment.