Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
FlorianEisenmenger a3423c64fd Projekt Kontext updated il y a 1 semaine
..
.ddev initial checkin with maaaaannnny functions il y a 1 semaine
assets edit reports il y a 1 semaine
bin initial checkin with maaaaannnny functions il y a 1 semaine
config update: reports il y a 1 semaine
migrations update accounts / users il y a 1 semaine
public initial checkin with maaaaannnny functions il y a 1 semaine
src edit reports il y a 1 semaine
templates edit reports il y a 1 semaine
translations update: reports il y a 1 semaine
.editorconfig initial checkin with maaaaannnny functions il y a 1 semaine
.env initial checkin with maaaaannnny functions il y a 1 semaine
.env.dev initial checkin with maaaaannnny functions il y a 1 semaine
.gitignore initial checkin with maaaaannnny functions il y a 1 semaine
1-reset-and-seed.sh initial checkin with maaaaannnny functions il y a 1 semaine
2-update-tenant-db.sh update: reports il y a 1 semaine
LICENSE initial checkin with maaaaannnny functions il y a 1 semaine
PROJEKT_KONTEXT.md Projekt Kontext updated il y a 1 semaine
README.md beautify html il y a 1 semaine
composer.json initial checkin with maaaaannnny functions il y a 1 semaine
composer.lock initial checkin with maaaaannnny functions il y a 1 semaine
package-lock.json initial checkin with maaaaannnny functions il y a 1 semaine
package.json initial checkin with maaaaannnny functions il y a 1 semaine
symfony.lock initial checkin with maaaaannnny functions il y a 1 semaine
webpack.config.js update: reports il y a 1 semaine

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