您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
FlorianEisenmenger 039f24d3a6 update accounts / users 1周前
..
.ddev initial checkin with maaaaannnny functions 1周前
assets update accounts / users 1周前
bin initial checkin with maaaaannnny functions 1周前
config update accounts / users 1周前
migrations update accounts / users 1周前
public initial checkin with maaaaannnny functions 1周前
src update accounts / users 1周前
templates update accounts / users 1周前
translations initial checkin with maaaaannnny functions 1周前
.editorconfig initial checkin with maaaaannnny functions 1周前
.env initial checkin with maaaaannnny functions 1周前
.env.dev initial checkin with maaaaannnny functions 1周前
.gitignore initial checkin with maaaaannnny functions 1周前
1-reset-and-seed.sh initial checkin with maaaaannnny functions 1周前
LICENSE initial checkin with maaaaannnny functions 1周前
README.md initial checkin with maaaaannnny functions 1周前
composer.json initial checkin with maaaaannnny functions 1周前
composer.lock initial checkin with maaaaannnny functions 1周前
package-lock.json initial checkin with maaaaannnny functions 1周前
package.json initial checkin with maaaaannnny functions 1周前
symfony.lock initial checkin with maaaaannnny functions 1周前
webpack.config.js update accounts / users 1周前

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