Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
FlorianEisenmenger 574db4febd statistics and invoices il y a 1 jour
..
.claude coloring il y a 3 semaines
.ddev initial checkin with maaaaannnny functions il y a 3 semaines
assets statistics and invoices il y a 1 jour
bin initial checkin with maaaaannnny functions il y a 3 semaines
config lexware office integration il y a 3 jours
migrations label field il y a 2 jours
public htaccess il y a 3 semaines
src statistics and invoices il y a 1 jour
templates statistics and invoices il y a 1 jour
translations statistics and invoices il y a 1 jour
.editorconfig initial checkin with maaaaannnny functions il y a 3 semaines
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page il y a 3 jours
.gitignore initial checkin with maaaaannnny functions il y a 3 semaines
1-reset-and-seed.sh initial checkin with maaaaannnny functions il y a 3 semaines
2-update-tenant-db.sh update: reports il y a 3 semaines
LICENSE initial checkin with maaaaannnny functions il y a 3 semaines
PROJEKT_KONTEXT.md updated md files il y a 3 jours
README.md beautify html il y a 3 semaines
composer.json lexware office integration il y a 3 jours
composer.lock lexware office integration il y a 3 jours
deploy.sh deploy il y a 3 semaines
package-lock.json statistics and invoices il y a 1 jour
package.json statistics and invoices il y a 1 jour
symfony.lock initial checkin with maaaaannnny functions il y a 3 semaines
upload-build.sh logging il y a 3 semaines
webpack.config.js statistics and invoices il y a 1 jour

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