Skip to main content

Commands

Use commands for common apps' operations

Create app​

To create an app from the CLI run following script

./manage.py create_app
--identifier my-app
--permission MANAGE_ORDERS MANAGE_USERS
--activate

It will return app token to stdout. It's useful to create long living tokens too.

Install app from the Manifest​

To install app via Manifest, run:

./manage.py install_app
--manifest-url http://localhost:3000/manifest
--activate

Common issues

App installation pending infinitely​

App installation via the GraphQL API runs as a background task. If the status remains in PENDING indefinitely, ensure that the Celery worker is actively processing tasks.

Check Celery configuration.