- Was ist DevOps
- LeadTime
- MTBF vs MTTR
- 12 factor app
- CloudNative
- Microservices
- Feature Toggles
- Wichtigkeit von CI/CD
- Semantic Releasing
- UnitTests / Build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo su - | |
apt-get update | |
curl -fsSL get.docker.com -o get-docker.sh | |
sh get-docker.sh | |
cat << EOF > /etc/docker/daemon.json | |
{ | |
"exec-opts": ["native.cgroupdriver=systemd"] | |
} | |
EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class BaseElement extends HTMLElement { | |
constructor() { | |
super(); | |
this.root = this.attachShadow({mode: 'open'}); | |
} | |
getStyle() { | |
const relativePath = import.meta.url.substring(window.location.origin.length); | |
const end = relativePath.lastIndexOf('/'); |
- Die User Stories erfüllen INVEST
- Die User Story ist klein genug um in einem Sprint umgesetzt werden zu können
- Es gibt keine externen Abhängigkeiten die die Story blockieren können
- Akzeptanzkriterien nach BDD wurden erfasst
- Sobald die Akzeptanzkriterien erfüllt sind, ist die Story abgeschlossen
- Maven Build und alle Unit-Tests sind erfolgreich
- Git Repo hat einen neuen Tag entsprechend Semantic Versioning
OlderNewer