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 fe08761a56 lexoffice invoice ground setup il y a 7 heures
..
.claude coloring il y a 3 semaines
.ddev initial checkin with maaaaannnny functions il y a 3 semaines
assets lexoffice invoice ground setup il y a 7 heures
bin initial checkin with maaaaannnny functions il y a 3 semaines
config lexware office integration il y a 1 jour
migrations lexware office integration il y a 1 jour
public htaccess il y a 3 semaines
src lexoffice invoice ground setup il y a 7 heures
templates lexoffice invoice ground setup il y a 7 heures
translations lexoffice invoice ground setup il y a 7 heures
.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 1 jour
.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 1 jour
README.md beautify html il y a 3 semaines
composer.json lexware office integration il y a 1 jour
composer.lock lexware office integration il y a 1 jour
deploy.sh deploy il y a 3 semaines
package-lock.json initial checkin with maaaaannnny functions il y a 3 semaines
package.json initial checkin with maaaaannnny functions il y a 3 semaines
symfony.lock initial checkin with maaaaannnny functions il y a 3 semaines
upload-build.sh logging il y a 3 semaines
webpack.config.js update: reports il y a 3 semaines

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