@postxl/runtime
v0.1.5
Published
> `runtime` is the core package that every PostXL project uses internally.
Downloads
107
Readme
runtime
runtime
is the core package that every PostXL project uses internally.
Project Roadmap
PXL is a set of tools that help you ship consulting apps faster.
Schema
PXL uses a special entity configuration schema as the centerpiece of all of its functionality. Schema should be the starting point of all your changes.
Project Structure
/template: check project template
/packages
/runtime
/admin
/cli
/generators -> templates
/
/generic ios app
/
/backend:
/apps
/api
/cli
/libs:
gql -> repos ("dataService") -> runtime (import from @pxl/runtime/...)
admin -> @postxl/admin-backend (depends on @pxl/runtime -> expose search route etc.)
custom logic
/web
/e2e
/ios
/migrations
manage.ts
schema.ts
/docker -> Dockerfiles for server, admin, and web
/types
.pxlignore -> contains files/folder that should not be regenerated
import { pxl } from '@pxl/cli'
import schema from './schema.ts'
import migrations from './migrations/index.ts'
pxl({
schema,
migrations,
})
node manage.ts migrate
node manager.ts generate
node manager.ts doctor