Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
FlorianEisenmenger e71816ff00 ubuntu problem před 1 týdnem
..
.ddev initial checkin with maaaaannnny functions před 1 týdnem
assets inverted filtering před 1 týdnem
bin initial checkin with maaaaannnny functions před 1 týdnem
config forgot password před 1 týdnem
migrations forgot password před 1 týdnem
public initial checkin with maaaaannnny functions před 1 týdnem
src inverted filtering před 1 týdnem
templates inverted filtering před 1 týdnem
translations inverted filtering před 1 týdnem
.editorconfig initial checkin with maaaaannnny functions před 1 týdnem
.env initial checkin with maaaaannnny functions před 1 týdnem
.env.dev initial checkin with maaaaannnny functions před 1 týdnem
.gitignore initial checkin with maaaaannnny functions před 1 týdnem
1-reset-and-seed.sh initial checkin with maaaaannnny functions před 1 týdnem
2-update-tenant-db.sh update: reports před 1 týdnem
LICENSE initial checkin with maaaaannnny functions před 1 týdnem
PROJEKT_KONTEXT.md Projekt Kontext updated před 1 týdnem
README.md beautify html před 1 týdnem
composer.json initial checkin with maaaaannnny functions před 1 týdnem
composer.lock initial checkin with maaaaannnny functions před 1 týdnem
deploy.sh ubuntu problem před 1 týdnem
package-lock.json initial checkin with maaaaannnny functions před 1 týdnem
package.json initial checkin with maaaaannnny functions před 1 týdnem
symfony.lock initial checkin with maaaaannnny functions před 1 týdnem
webpack.config.js update: reports před 1 týdnem

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