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

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