You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
FlorianEisenmenger a02ddf3bb9 updated md files 1 day ago
..
.claude coloring 3 weeks ago
.ddev initial checkin with maaaaannnny functions 3 weeks ago
assets big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
bin initial checkin with maaaaannnny functions 3 weeks ago
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
migrations farbwahl, minimal theme 3 weeks ago
public htaccess 3 weeks ago
src big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
templates big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
translations big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
.editorconfig initial checkin with maaaaannnny functions 3 weeks ago
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
.gitignore initial checkin with maaaaannnny functions 3 weeks ago
1-reset-and-seed.sh initial checkin with maaaaannnny functions 3 weeks ago
2-update-tenant-db.sh update: reports 3 weeks ago
LICENSE initial checkin with maaaaannnny functions 3 weeks ago
PROJEKT_KONTEXT.md updated md files 1 day ago
README.md beautify html 3 weeks ago
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 day ago
deploy.sh deploy 3 weeks ago
package-lock.json initial checkin with maaaaannnny functions 3 weeks ago
package.json initial checkin with maaaaannnny functions 3 weeks ago
symfony.lock initial checkin with maaaaannnny functions 3 weeks ago
upload-build.sh logging 3 weeks ago
webpack.config.js update: reports 3 weeks ago

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