Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
FlorianEisenmenger b477d4415e fixes vor 1 Tag
..
.claude coloring vor 3 Wochen
.ddev initial checkin with maaaaannnny functions vor 3 Wochen
assets fixes vor 1 Tag
bin initial checkin with maaaaannnny functions vor 3 Wochen
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page vor 1 Tag
migrations farbwahl, minimal theme vor 3 Wochen
public htaccess vor 3 Wochen
src different money entries for customer, project and performance. stop-clock. vor 1 Tag
templates fixes vor 1 Tag
translations different money entries for customer, project and performance. stop-clock. vor 1 Tag
.editorconfig initial checkin with maaaaannnny functions vor 3 Wochen
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page vor 1 Tag
.gitignore initial checkin with maaaaannnny functions vor 3 Wochen
1-reset-and-seed.sh initial checkin with maaaaannnny functions vor 3 Wochen
2-update-tenant-db.sh update: reports vor 3 Wochen
LICENSE initial checkin with maaaaannnny functions vor 3 Wochen
PROJEKT_KONTEXT.md updated md files vor 1 Tag
README.md beautify html vor 3 Wochen
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page vor 1 Tag
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page vor 1 Tag
deploy.sh deploy vor 3 Wochen
package-lock.json initial checkin with maaaaannnny functions vor 3 Wochen
package.json initial checkin with maaaaannnny functions vor 3 Wochen
symfony.lock initial checkin with maaaaannnny functions vor 3 Wochen
upload-build.sh logging vor 3 Wochen
webpack.config.js update: reports vor 3 Wochen

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