Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
FlorianEisenmenger b477d4415e fixes 1 dia atrás
..
.claude coloring 3 semanas atrás
.ddev initial checkin with maaaaannnny functions 3 semanas atrás
assets fixes 1 dia atrás
bin initial checkin with maaaaannnny functions 3 semanas atrás
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 dia atrás
migrations farbwahl, minimal theme 3 semanas atrás
public htaccess 3 semanas atrás
src different money entries for customer, project and performance. stop-clock. 1 dia atrás
templates fixes 1 dia atrás
translations different money entries for customer, project and performance. stop-clock. 1 dia atrás
.editorconfig initial checkin with maaaaannnny functions 3 semanas atrás
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 dia atrás
.gitignore initial checkin with maaaaannnny functions 3 semanas atrás
1-reset-and-seed.sh initial checkin with maaaaannnny functions 3 semanas atrás
2-update-tenant-db.sh update: reports 3 semanas atrás
LICENSE initial checkin with maaaaannnny functions 3 semanas atrás
PROJEKT_KONTEXT.md updated md files 1 dia atrás
README.md beautify html 3 semanas atrás
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 dia atrás
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 dia atrás
deploy.sh deploy 3 semanas atrás
package-lock.json initial checkin with maaaaannnny functions 3 semanas atrás
package.json initial checkin with maaaaannnny functions 3 semanas atrás
symfony.lock initial checkin with maaaaannnny functions 3 semanas atrás
upload-build.sh logging 3 semanas atrás
webpack.config.js update: reports 3 semanas atrás

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