Disable deployment until production server is configured

- Temporarily disable automatic deployment to prevent CI failures
- Add comprehensive production server setup documentation
- Update deployment guide with clear setup requirements
- Format manually edited code files for CI compliance
- Provide step-by-step server configuration instructions
- Enable safe CI/CD pipeline operation without deployment errors

The deployment will be re-enabled once the production server is properly set up following the new documentation.
This commit is contained in:
Stiftung Development
2025-09-06 21:17:34 +02:00
parent cc08bda714
commit 1589cff171
6 changed files with 317 additions and 64 deletions

View File

@@ -4,22 +4,11 @@ from django import forms
from django.core.exceptions import ValidationError
from django.utils import timezone
from .models import (
BankTransaction,
Destinataer,
DestinataerNotiz,
DestinataerUnterstuetzung,
DokumentLink,
Foerderung,
Land,
LandAbrechnung,
Paechter,
Person,
Rentmeister,
StiftungsKonto,
UnterstuetzungWiederkehrend,
Verwaltungskosten,
)
from .models import (BankTransaction, Destinataer, DestinataerNotiz,
DestinataerUnterstuetzung, DokumentLink, Foerderung, Land,
LandAbrechnung, Paechter, Person, Rentmeister,
StiftungsKonto, UnterstuetzungWiederkehrend,
Verwaltungskosten)
class RentmeisterForm(forms.ModelForm):