Files
Webseite_Stines/README.md
T

23 lines
422 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Webseite Stines Hugo + Terraform GitOps
## Workflow
### Staging (automatisch bei Push auf `main`)
- Terraform prüft ob Staging-LXC existiert → erstellt ihn falls nicht
- Hugo baut die Site
- Deploy auf `staging.stines.de`
### Production (bei Git Tag `v*`)
```bash
git tag v1.0.0
git push origin v1.0.0
```
- Hugo baut die Site
- Deploy auf `stines.de`
## Lokale Entwicklung
```bash
cd hugo
hugo server -D
```