Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
FlorianEisenmenger 1c6a36be29 different money entries for customer, project and performance. stop-clock. 1 день тому
..
.claude coloring 3 тижднів тому
.ddev initial checkin with maaaaannnny functions 3 тижднів тому
assets different money entries for customer, project and performance. stop-clock. 1 день тому
bin initial checkin with maaaaannnny functions 3 тижднів тому
config big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 день тому
migrations farbwahl, minimal theme 3 тижднів тому
public htaccess 3 тижднів тому
src different money entries for customer, project and performance. stop-clock. 1 день тому
templates different money entries for customer, project and performance. stop-clock. 1 день тому
translations different money entries for customer, project and performance. stop-clock. 1 день тому
.editorconfig initial checkin with maaaaannnny functions 3 тижднів тому
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 день тому
.gitignore initial checkin with maaaaannnny functions 3 тижднів тому
1-reset-and-seed.sh initial checkin with maaaaannnny functions 3 тижднів тому
2-update-tenant-db.sh update: reports 3 тижднів тому
LICENSE initial checkin with maaaaannnny functions 3 тижднів тому
PROJEKT_KONTEXT.md updated md files 1 день тому
README.md beautify html 3 тижднів тому
composer.json big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 день тому
composer.lock big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 1 день тому
deploy.sh deploy 3 тижднів тому
package-lock.json initial checkin with maaaaannnny functions 3 тижднів тому
package.json initial checkin with maaaaannnny functions 3 тижднів тому
symfony.lock initial checkin with maaaaannnny functions 3 тижднів тому
upload-build.sh logging 3 тижднів тому
webpack.config.js update: reports 3 тижднів тому

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