Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
FlorianEisenmenger fe08761a56 lexoffice invoice ground setup 15 часов назад
..
.claude coloring 3 недель назад
.ddev initial checkin with maaaaannnny functions 3 недель назад
assets lexoffice invoice ground setup 15 часов назад
bin initial checkin with maaaaannnny functions 3 недель назад
config lexware office integration 1 день назад
migrations lexware office integration 1 день назад
public htaccess 3 недель назад
src lexoffice invoice ground setup 15 часов назад
templates lexoffice invoice ground setup 15 часов назад
translations lexoffice invoice ground setup 15 часов назад
.editorconfig initial checkin with maaaaannnny functions 3 недель назад
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 2 дней назад
.gitignore initial checkin with maaaaannnny functions 3 недель назад
1-reset-and-seed.sh initial checkin with maaaaannnny functions 3 недель назад
2-update-tenant-db.sh update: reports 3 недель назад
LICENSE initial checkin with maaaaannnny functions 3 недель назад
PROJEKT_KONTEXT.md updated md files 2 дней назад
README.md beautify html 3 недель назад
composer.json lexware office integration 1 день назад
composer.lock lexware office integration 1 день назад
deploy.sh deploy 3 недель назад
package-lock.json initial checkin with maaaaannnny functions 3 недель назад
package.json initial checkin with maaaaannnny functions 3 недель назад
symfony.lock initial checkin with maaaaannnny functions 3 недель назад
upload-build.sh logging 3 недель назад
webpack.config.js update: reports 3 недель назад

README.md

spawntree Timetracker

Installation

cd httpdocs
ddev start
# Läuft dann unter https://timetracking.ddev.site:8459

ddev exec composer install
ddev exec npm install

sh 1-reset-and-seed.sh
# Entweder mit oder ohne Testdaten

ddev exec npm run watch

Live-Setup (einmalig)

GRANT ALL PRIVILEGES ON `db_%`.* TO 'deindbuser'@'%'; FLUSH PRIVILEGES;

Migrationen

Central Entity geändert

ddev exec php bin/console doctrine:migrations:diff --em=central --namespace=DoctrineMigrations
ddev exec php bin/console doctrine:migrations:migrate --em=central --no-interaction

Tenant Entity geändert

Kein Migrations-Workflow — die Tenant-DB wird per SchemaTool neu angelegt:

sh reset-and-seed.sh

Webpack / Assets

# Dev (einmalig)
ddev exec npm run dev

# Watch-Modus (bei Änderungen automatisch neu bauen)
ddev exec npm run watch

# Production Build
ddev exec npm run build

Hilfsbefehle

# Alle URLs anzeigen
ddev describe

# Cache leeren
ddev exec php bin/console cache:clear