No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
FlorianEisenmenger 1c6a36be29 different money entries for customer, project and performance. stop-clock. hace 1 día
..
.claude coloring hace 3 semanas
.ddev initial checkin with maaaaannnny functions hace 3 semanas
assets different money entries for customer, project and performance. stop-clock. hace 1 día
bin initial checkin with maaaaannnny functions hace 3 semanas
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page hace 1 día
migrations farbwahl, minimal theme hace 3 semanas
public htaccess hace 3 semanas
src different money entries for customer, project and performance. stop-clock. hace 1 día
templates different money entries for customer, project and performance. stop-clock. hace 1 día
translations different money entries for customer, project and performance. stop-clock. hace 1 día
.editorconfig initial checkin with maaaaannnny functions hace 3 semanas
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page hace 1 día
.gitignore initial checkin with maaaaannnny functions hace 3 semanas
1-reset-and-seed.sh initial checkin with maaaaannnny functions hace 3 semanas
2-update-tenant-db.sh update: reports hace 3 semanas
LICENSE initial checkin with maaaaannnny functions hace 3 semanas
PROJEKT_KONTEXT.md updated md files hace 1 día
README.md beautify html hace 3 semanas
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page hace 1 día
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page hace 1 día
deploy.sh deploy hace 3 semanas
package-lock.json initial checkin with maaaaannnny functions hace 3 semanas
package.json initial checkin with maaaaannnny functions hace 3 semanas
symfony.lock initial checkin with maaaaannnny functions hace 3 semanas
upload-build.sh logging hace 3 semanas
webpack.config.js update: reports hace 3 semanas

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