Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
FlorianEisenmenger 41f8b687d1 forgot password há 1 semana
..
.ddev initial checkin with maaaaannnny functions há 1 semana
assets forgot password há 1 semana
bin initial checkin with maaaaannnny functions há 1 semana
config forgot password há 1 semana
migrations forgot password há 1 semana
public initial checkin with maaaaannnny functions há 1 semana
src forgot password há 1 semana
templates forgot password há 1 semana
translations forgot password há 1 semana
.editorconfig initial checkin with maaaaannnny functions há 1 semana
.env initial checkin with maaaaannnny functions há 1 semana
.env.dev initial checkin with maaaaannnny functions há 1 semana
.gitignore initial checkin with maaaaannnny functions há 1 semana
1-reset-and-seed.sh initial checkin with maaaaannnny functions há 1 semana
2-update-tenant-db.sh update: reports há 1 semana
LICENSE initial checkin with maaaaannnny functions há 1 semana
PROJEKT_KONTEXT.md Projekt Kontext updated há 1 semana
README.md beautify html há 1 semana
composer.json initial checkin with maaaaannnny functions há 1 semana
composer.lock initial checkin with maaaaannnny functions há 1 semana
package-lock.json initial checkin with maaaaannnny functions há 1 semana
package.json initial checkin with maaaaannnny functions há 1 semana
symfony.lock initial checkin with maaaaannnny functions há 1 semana
webpack.config.js update: reports há 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