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 23cdc3d451 deploy script vor 1 Woche
..
.ddev initial checkin with maaaaannnny functions vor 1 Woche
assets inverted filtering vor 1 Woche
bin initial checkin with maaaaannnny functions vor 1 Woche
config forgot password vor 1 Woche
migrations forgot password vor 1 Woche
public initial checkin with maaaaannnny functions vor 1 Woche
src inverted filtering vor 1 Woche
templates inverted filtering vor 1 Woche
translations inverted filtering 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
2-update-tenant-db.sh update: reports vor 1 Woche
LICENSE initial checkin with maaaaannnny functions vor 1 Woche
PROJEKT_KONTEXT.md Projekt Kontext updated vor 1 Woche
README.md beautify html vor 1 Woche
composer.json initial checkin with maaaaannnny functions vor 1 Woche
composer.lock initial checkin with maaaaannnny functions vor 1 Woche
deploy.sh deploy script 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: reports vor 1 Woche

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