Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
FlorianEisenmenger bbd1fa6690 deploy 1 vecka sedan
..
.ddev initial checkin with maaaaannnny functions 1 vecka sedan
assets inverted filtering 1 vecka sedan
bin initial checkin with maaaaannnny functions 1 vecka sedan
config forgot password 1 vecka sedan
migrations forgot password 1 vecka sedan
public initial checkin with maaaaannnny functions 1 vecka sedan
src inverted filtering 1 vecka sedan
templates inverted filtering 1 vecka sedan
translations inverted filtering 1 vecka sedan
.editorconfig initial checkin with maaaaannnny functions 1 vecka sedan
.env initial checkin with maaaaannnny functions 1 vecka sedan
.env.dev initial checkin with maaaaannnny functions 1 vecka sedan
.gitignore initial checkin with maaaaannnny functions 1 vecka sedan
1-reset-and-seed.sh initial checkin with maaaaannnny functions 1 vecka sedan
2-update-tenant-db.sh update: reports 1 vecka sedan
LICENSE initial checkin with maaaaannnny functions 1 vecka sedan
PROJEKT_KONTEXT.md Projekt Kontext updated 1 vecka sedan
README.md beautify html 1 vecka sedan
composer.json initial checkin with maaaaannnny functions 1 vecka sedan
composer.lock initial checkin with maaaaannnny functions 1 vecka sedan
deploy.sh deploy 1 vecka sedan
package-lock.json initial checkin with maaaaannnny functions 1 vecka sedan
package.json initial checkin with maaaaannnny functions 1 vecka sedan
symfony.lock initial checkin with maaaaannnny functions 1 vecka sedan
webpack.config.js update: reports 1 vecka sedan

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