velmphp/app

Official Velm Laravel application — greenfield ERP host with addons, panel, and setup scripts

Maintainers

Package info

github.com/velmphp/app

Language:JavaScript

Type:project

pkg:composer/velmphp/app

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0-rc2 2026-06-06 05:37 UTC

This package is auto-updated.

Last update: 2026-06-06 05:44:24 UTC


README

Minimal Laravel host for a Velm ERP — Livewire panel, empty addons/, and bootstrap setup (base + admin).

Published on Packagist as velmphp/app. Monorepo path: apps/app/.

Packagist install

composer create-project velmphp/app my_app -s rc
cd my_app
composer run setup
composer run dev

Open http://127.0.0.1:8000/velm and sign in with admin@velm.test / password.

See the installation guide.

Monorepo development

From the repository root:

composer install
cd apps/app
composer update
cp composer.local.json.example composer.local.json
composer update
composer run setup
composer run dev

composer.local.json adds path repositories to ../../packages/* (gitignored). Run composer update again after copying it so the merge plugin (already in vendor/) symlinks monorepo packages.

For the full reference app with demo addons, use apps/demo/ instead.

What composer run setup does

  1. composer velm-build-css — publish prebuilt Velm shell assets
  2. php artisan migrate — Laravel tables
  3. php artisan velm:migrate — bootstrap modules (base, admin)
  4. php artisan db:seed — admin user

Install more modules at /velm/apps or php artisan velm:module:install <name>.

Resetting the Velm schema

php artisan velm:migrate:fresh --yes
php artisan velm:seed

Maintainer checklist: PACKAGIST.md.