選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
FlorianEisenmenger 2f73217759 beautify html 1週間前
..
.ddev initial checkin with maaaaannnny functions 1週間前
assets scss - colors in variables 1週間前
bin initial checkin with maaaaannnny functions 1週間前
config update accounts / users 1週間前
migrations update accounts / users 1週間前
public initial checkin with maaaaannnny functions 1週間前
src cleanup 1週間前
templates beautify html 1週間前
translations beautify html 1週間前
.editorconfig initial checkin with maaaaannnny functions 1週間前
.env initial checkin with maaaaannnny functions 1週間前
.env.dev initial checkin with maaaaannnny functions 1週間前
.gitignore initial checkin with maaaaannnny functions 1週間前
1-reset-and-seed.sh initial checkin with maaaaannnny functions 1週間前
LICENSE initial checkin with maaaaannnny functions 1週間前
README.md beautify html 1週間前
composer.json initial checkin with maaaaannnny functions 1週間前
composer.lock initial checkin with maaaaannnny functions 1週間前
package-lock.json initial checkin with maaaaannnny functions 1週間前
package.json initial checkin with maaaaannnny functions 1週間前
symfony.lock initial checkin with maaaaannnny functions 1週間前
webpack.config.js update accounts / users 1週間前

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