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 0f04c96575 cleanup před 1 týdnem
..
.ddev initial checkin with maaaaannnny functions před 1 týdnem
assets scss - colors in variables před 1 týdnem
bin initial checkin with maaaaannnny functions před 1 týdnem
config update accounts / users před 1 týdnem
migrations update accounts / users před 1 týdnem
public initial checkin with maaaaannnny functions před 1 týdnem
src cleanup před 1 týdnem
templates update accounts / users před 1 týdnem
translations initial checkin with maaaaannnny functions 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
LICENSE initial checkin with maaaaannnny functions před 1 týdnem
README.md initial checkin with maaaaannnny functions 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
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 accounts / users před 1 týdnem

README.md

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)

Dann SCSS / JS bauen und beobachten:

ddev exec npm run watch

LIVE EINMALIG AUSFÜHREN:

GRANT ALL PRIVILEGES ON `db_%`.* TO ‘deindbuser’@'%'; FLUSH PRIVILEGES;

Central Entity geändert → Migration erstellen + ausführen:

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.

sh reset-and-seed.sh

Das legt die Tenant-DB per SchemaTool neu an.

Alle URLs anzeigen

ddev describe

Cache clear

ddev exec php bin/console cache:clear

WEBPACK

Einmalig bauen (Dev)

ddev exec npm run dev

Watch-Modus (bei Änderungen automatisch neu bauen)

ddev exec npm run watch

Production Build

ddev exec npm run build