forked from samuel-p/sp-codes.de
added dev deploy
added Matrix description
This commit is contained in:
parent
82ff07ffe9
commit
ad776f2bb3
2 changed files with 40 additions and 2 deletions
28
.drone.yml
28
.drone.yml
|
@ -12,7 +12,33 @@ steps:
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: deploy
|
name: deploy-develop
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
image: alpine
|
||||||
|
environment:
|
||||||
|
FTP_HOST:
|
||||||
|
from_secret: FTP_HOST
|
||||||
|
FTP_USERNAME:
|
||||||
|
from_secret: FTP_USERNAME
|
||||||
|
FTP_PASSWORD:
|
||||||
|
from_secret: FTP_PASSWORD
|
||||||
|
commands:
|
||||||
|
- which lftp || ( apk --update add lftp )
|
||||||
|
- lftp -e "mirror -R ./dist/ dev.sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: deploy-master
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: deploy
|
- name: deploy
|
||||||
|
|
|
@ -5,4 +5,16 @@ title: Matrix
|
||||||
---
|
---
|
||||||
# Matrix
|
# Matrix
|
||||||
|
|
||||||
Die Beschreibung zu Matrix folgt in Kürze.
|
[Matrix](https://matrix.org) ist eine moderne Software für dezentrale Kommunikation (wie E-Mail).
|
||||||
|
|
||||||
|
Seit Ende 2019 betreibe ich einen öffentlichen Matrix-Server
|
||||||
|
|
||||||
|
Weitere Informationen folgen...
|
||||||
|
|
||||||
|
## Weitere nützliche Links
|
||||||
|
|
||||||
|
* [Riot Web](https://chat.sp-codes.de/)
|
||||||
|
* [Verschiedene Apps](https://matrix.org/clients)
|
||||||
|
* [Liste öffentlicher Räume](https://view.matrix.org/)
|
||||||
|
* [Liste öffentlicher Matrix-Server](https://www.hello-matrix.net/public_servers.php)
|
||||||
|
* [Matrix FAQ](https://matrix.org/faq/)
|
||||||
|
|
Loading…
Reference in a new issue