Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
FlorianEisenmenger fa749a0fa9 big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
..
.claude coloring 2 недель назад
.ddev initial checkin with maaaaannnny functions 3 недель назад
assets big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
bin initial checkin with maaaaannnny functions 3 недель назад
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
migrations farbwahl, minimal theme 3 недель назад
public htaccess 3 недель назад
src big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
templates big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
translations big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
.editorconfig initial checkin with maaaaannnny functions 3 недель назад
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
.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 big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
README.md beautify html 3 недель назад
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 7 часов назад
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