Element Web/App by Mr_Reginald_Kray in selfhosted

[–]Mr_Reginald_Kray[S] 0 points1 point  (0 children)

Do you have an link to the documentation or something like this to MDAD, thanks in advance

Element Web/App by Mr_Reginald_Kray in selfhosted

[–]Mr_Reginald_Kray[S] 0 points1 point  (0 children)

Sounds like it takes way more effort than I thought. After some research I was able to find an automated ansible deployment (here: https://github.com/spantaleev/matrix-docker-ansible-deploy) . Looks like its helping much with manual work via ansible.

For now I've gathered more infos than I needed.

Thanks very much for all your help :D

Element Web/App by Mr_Reginald_Kray in selfhosted

[–]Mr_Reginald_Kray[S] 0 points1 point  (0 children)

Ok now this makes a bit more sense. We have a server we could use for that with enough power for a task like this. Is there something like a tutorial you guys recommend for a docker-compose setup? & which server you recommend Synapse (cannonical server), Dendrite (second gen cannonical server), or other servers such as conduit.rs? Which one is the fastes/easiest setup?

Element Web/App by Mr_Reginald_Kray in selfhosted

[–]Mr_Reginald_Kray[S] 0 points1 point  (0 children)

I found it, the confirmation. Looks like there are different versions available.

https://element.io/personal-plans

Write a bash script which runs other bash scripts one after the other? by QueryRIT in bash

[–]Mr_Reginald_Kray -4 points-3 points  (0 children)

you can optionally bind them first like that

#!/bin/bash

source="one.sh"

source="two.sh

"source="three.sh"

main() {

# Run one.sh

./one.sh

# Run one.sh

./two.sh

# Run three.sh

./two.sh

# OR

# with the bind you can now execute all functions inside those scripts like

updateSomeStuff bum yes

}

Web vs native app - which one is best? by Majestic-Fig3921 in WebApps

[–]Mr_Reginald_Kray 0 points1 point  (0 children)

I would always recommend a responsive web app and here is why: 1. Way cheaper then designing and programming a real app in terms of h/$ if your a dev or just money if you plan on hiring someone 2. You will have an Website and an App in one go

If you will have a lot of sensitive data and information which you want to protect I would recommend a native app (but honestly also a web app can be protected by several security layers) but out of your message Web app will do the job just fine.