Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
FlorianEisenmenger 0f04c96575 cleanup vor 1 Woche
..
.ddev initial checkin with maaaaannnny functions vor 1 Woche
assets scss - colors in variables vor 1 Woche
bin initial checkin with maaaaannnny functions vor 1 Woche
config update accounts / users vor 1 Woche
migrations update accounts / users vor 1 Woche
public initial checkin with maaaaannnny functions vor 1 Woche
src cleanup vor 1 Woche
templates update accounts / users vor 1 Woche
translations initial checkin with maaaaannnny functions vor 1 Woche
.editorconfig initial checkin with maaaaannnny functions vor 1 Woche
.env initial checkin with maaaaannnny functions vor 1 Woche
.env.dev initial checkin with maaaaannnny functions vor 1 Woche
.gitignore initial checkin with maaaaannnny functions vor 1 Woche
1-reset-and-seed.sh initial checkin with maaaaannnny functions vor 1 Woche
LICENSE initial checkin with maaaaannnny functions vor 1 Woche
README.md initial checkin with maaaaannnny functions vor 1 Woche
composer.json initial checkin with maaaaannnny functions vor 1 Woche
composer.lock initial checkin with maaaaannnny functions vor 1 Woche
package-lock.json initial checkin with maaaaannnny functions vor 1 Woche
package.json initial checkin with maaaaannnny functions vor 1 Woche
symfony.lock initial checkin with maaaaannnny functions vor 1 Woche
webpack.config.js update accounts / users vor 1 Woche

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