Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
FlorianEisenmenger 1b792b14f6 mobile optimization 1 giorno fa
..
.claude coloring 3 settimane fa
.ddev initial checkin with maaaaannnny functions 3 settimane fa
assets mobile optimization 1 giorno fa
bin initial checkin with maaaaannnny functions 3 settimane fa
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 giorno fa
migrations farbwahl, minimal theme 3 settimane fa
public htaccess 3 settimane fa
src different money entries for customer, project and performance. stop-clock. 1 giorno fa
templates mobile optimization 1 giorno fa
translations different money entries for customer, project and performance. stop-clock. 1 giorno fa
.editorconfig initial checkin with maaaaannnny functions 3 settimane fa
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 giorno fa
.gitignore initial checkin with maaaaannnny functions 3 settimane fa
1-reset-and-seed.sh initial checkin with maaaaannnny functions 3 settimane fa
2-update-tenant-db.sh update: reports 3 settimane fa
LICENSE initial checkin with maaaaannnny functions 3 settimane fa
PROJEKT_KONTEXT.md updated md files 1 giorno fa
README.md beautify html 3 settimane fa
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 giorno fa
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 giorno fa
deploy.sh deploy 3 settimane fa
package-lock.json initial checkin with maaaaannnny functions 3 settimane fa
package.json initial checkin with maaaaannnny functions 3 settimane fa
symfony.lock initial checkin with maaaaannnny functions 3 settimane fa
upload-build.sh logging 3 settimane fa
webpack.config.js update: reports 3 settimane fa

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