選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
FlorianEisenmenger 2b1dcf04a6 login page 1日前
..
.claude coloring 3週間前
.ddev initial checkin with maaaaannnny functions 1ヶ月前
_backups import and statistics 1日前
assets login page 1日前
bin initial checkin with maaaaannnny functions 1ヶ月前
config login page 1日前
migrations label field 5日前
public htaccess 4週間前
src login page 1日前
templates login page 1日前
translations login page 1日前
.editorconfig initial checkin with maaaaannnny functions 1ヶ月前
.env big update: cleanup, restructuring, translation keys + excel, csv and pdf exports + print page 6日前
.gitignore initial checkin with maaaaannnny functions 1ヶ月前
1-reset-and-seed.sh initial checkin with maaaaannnny functions 1ヶ月前
2-update-tenant-db.sh update: reports 1ヶ月前
LICENSE initial checkin with maaaaannnny functions 1ヶ月前
PROJEKT_KONTEXT.md updated md files 6日前
README.md beautify html 1ヶ月前
composer.json lexware office integration 6日前
composer.lock lexware office integration 6日前
deploy.sh deploy 4週間前
package-lock.json statistics and invoices 4日前
package.json statistics and invoices 4日前
symfony.lock initial checkin with maaaaannnny functions 1ヶ月前
upload-build.sh logging 4週間前
webpack.config.js statistics and invoices 4日前

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