No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
FlorianEisenmenger f5837b8cf4 Seed hace 1 semana
..
.ddev initial checkin with maaaaannnny functions hace 1 semana
assets update accounts / users hace 1 semana
bin initial checkin with maaaaannnny functions hace 1 semana
config update accounts / users hace 1 semana
migrations update accounts / users hace 1 semana
public initial checkin with maaaaannnny functions hace 1 semana
src Seed hace 1 semana
templates update accounts / users hace 1 semana
translations initial checkin with maaaaannnny functions hace 1 semana
.editorconfig initial checkin with maaaaannnny functions hace 1 semana
.env initial checkin with maaaaannnny functions hace 1 semana
.env.dev initial checkin with maaaaannnny functions hace 1 semana
.gitignore initial checkin with maaaaannnny functions hace 1 semana
1-reset-and-seed.sh initial checkin with maaaaannnny functions hace 1 semana
LICENSE initial checkin with maaaaannnny functions hace 1 semana
README.md initial checkin with maaaaannnny functions hace 1 semana
composer.json initial checkin with maaaaannnny functions hace 1 semana
composer.lock initial checkin with maaaaannnny functions hace 1 semana
package-lock.json initial checkin with maaaaannnny functions hace 1 semana
package.json initial checkin with maaaaannnny functions hace 1 semana
symfony.lock initial checkin with maaaaannnny functions hace 1 semana
webpack.config.js update accounts / users hace 1 semana

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