pos-cli is a command-line interface (CLI) tool specifically developed to simplify the deployment of your configuration files and assets to platformOS. It requires a specific file structure to ensure correct communication with the platformOS API. While its use is not mandatory, it is highly recommended. Basic familiarity with command line environments, such as Terminal, is expected when using pos-cli.
If you encounter any issues, have feedback, or want to request new features, please go to our issues page and let us know.
Run all commands from the project root directory, one level above the app
or modules
directory.
pos-cli
requires Node.js version 18 or higher to function correctly. See instructions for installing Node.js on your platform.
If Node.js is installed on your system for all users, you may need to use the sudo
command to install npm packages globally:
sudo npm install -g @platformos/pos-cli
If you're using nvm (Node Version Manager) or if Node.js is installed only for your user account, use:
npm install -g @platformos/pos-cli
To authenticate, you'll need your Partner Portal account credentials. If you don't have a Partner, follow the Sign up on the Partner Portal guide.
To add an environment to your configuration file, use the env add
command and authenticate with your Partner Portal credentials:
pos-cli env add [environment] --url [your application url]
Example: pos-cli env add staging --url https://example.com
The configuration for your environments is stored in the .pos
file.
To synchronize changes with your environment, use the following command:
pos-cli sync [environment]
Example: pos-cli sync staging
Using this command activates sync mode, which immediately uploads any changes you make to your local file system to the specified environment. This offers an experience similar to working on a local server. However, because changes are applied instantly, using sync mode on a production environment or a live application is risky and not recommended. It's best to limit the use of this feature to staging environments where immediate updates can be tested safely.
Include the --open
(-o
) option with your sync command to automatically launch your Instance in the default web browser:
pos-cli sync [environment] -o
By default, the sync
command establishes three concurrent connections to our server for syncing resources and assets. You have the option to modify this to better suit your network’s capabilities:
pos-cli sync [environment] -c 10
Adjust the number of concurrent connections based on your specific requirements and connection strength.
To deploy all changes to a specified environment, use the following command:
pos-cli deploy [environment]
Example: pos-cli deploy staging
It is recommended to first deploy changes to a staging environment, thoroughly test them there, and only then proceed with deploying to production. The deploy command packages all your files into a zip file and sends it to the API for background processing. Each zip file is stored, enabling rollback if any issues arise.
To skip the audit during deployment, set the environmental variable CI
to true
.
To perform a static analysis of the files in your current application directory, use the following command:
pos-cli audit
Example: pos-cli audit
This command checks your application files for issues using static analysis, helping you maintain code quality and identify potential errors.
Use the logs
command to access errors and logs that you or the system logs:
pos-cli logs [environment]
Read more on how to create logs.
Once activated, this command continuously displays logs as long as it is running. If supported by your operating system, errors will also trigger system notifications.
You can filter logs displayed by specifying a type with the --filter
argument.
pos-cli logs [environment] --filter type
Example:
pos-cli logs staging --filter debug
This command filters and displays only the logs of type 'debug' from the staging environment.
For more details, read our documentation on logs.
examples:
pos-cli logsv2 search stg --size 5 --from 0
pos-cli logsv2 search stg --sql "select * from logs" --json | jq
pos-cli logsv2 search stg --sql "select message,type from logs" --json | jq
pos-cli logsv2 search stg --sql "select * from logs where str_match(message, 'com')" --start_time 1694694303000000 --size 5 | jq
- alerts
- alerts delete
- better errors
- GUI
If you need to recall the names of your environments or their corresponding URLs, use the following command:
pos-cli env list
To start a new project from scratch and set up the initial directory structure, use the init
command:
pos-cli init --url mdyd-dev/directory-structure --branch master
Default URL: mdyd-dev/directory-structure
Default branch: master
The init
command uses degit to download the directory structure from the specified Git repository and extract it into your current directory. It supports all file formats that degit can handle, simplifying the setup process for new projects.
Add constant named API_KEY
with value abc123
on dev
environment:
pos-cli constants set --name API_KEY --value abc123 dev
Remove constant API_KEY
on staging
environment:
pos-cli constants unset --name API_KEY staging
List defined constants without exposing their values on production
environment:
pos-cli constants list production
SECRETTOKEN "XX..."
TEMP_TOKEN "XX..."
USE_SEARCH_INDEX "tr..."
List defined constants showing their values on production
environment:
SAFE=1 pos-cli constants list production
SECRETTOKEN "XXXXXXX"
TEMP_TOKEN "XXXXXXXXXXXXXX"
USE_SEARCH_INDEX "true"
Use the following command to display all modules that have been installed through the Partners Portal for a specific environment:
pos-cli modules list [environment]
Note: This command does not list modules that you deployed manually via the modules/
directory. For example, if you create a directory manually, such as modules/my-module
, and add a file like modules/my-module/public/views/partials/my-partial.liquid
, my-module
will not appear in the list produced by this command.
However, if you install a module using the pos-cli modules install another-module
command or directly through the "Install" option in the Partners Portal interface, the module will be listed by this command.
To create a new module using a template from a starter repository, use the following command, where <module name>
is your desired module name:
pos-cli modules init <module name>
This command sets up a new directory within the modules/
folder, pulling the initial structure and content from the Platform-OS module template repository.
Example of creating a module named "new": ~/projects/pos/modules/pos-module-new pos-cli modules init new [11:02:21] Module directory structure successfully created.
After running the command, you can see the new module directory has been created by listing the contents:
~/projects/pos/modules/pos-module-new ls
modules
~/projects/pos/modules/pos-module-new cd modules
~/projects/pos/modules/pos-module-new/modules ls
new
~/projects/pos/modules/pos-module-new/modules cd new
~/projects/pos/modules/pos-module-new/modules/new ls
CHANGELOG.md changelog-template.hbs LICENSE package.json private public pull_request_template.md README.md template-values.json
Install modules published in the modules marketplace by adding them to app/pos-modules.json
. Use the following commands to install and then deploy the module:
pos-cli modules install <env> [module name]
pos-cli deploy <env>
To remove a module from your application:
pos-cli modules remove [environment] <module name>
To publish a module to our module repository,
-
Create the module on the Partner Portal and give it a unique name.
-
Create a separate directory for your module and run
pos-cli init <module_name>
to create necessary directory structure.mkdir <module_name>; cd <module_name> pos-cli init <module_name>
-
After preparing your module, release the new version and then publish it:
pos-cli modules version x.x.x pos-cli modules push --email <your_email>
Fetch the codebase of a module that is deployed on your instance:
pos-cli modules pull <env> <module_name>
This will download and unpack module files into the modules/<module_name>
directory.
Download the public codebase of a released module:
pos-cli modules download <module_name>
Templates automate and simplify the configuration process in module management. For example, upon installing a module, it is possible to specify URIs under which pages will be available after the module has been installed. This functionality is supported in both sync and deploy modes.
The templates use ERB/EJS-style markup (<%=
=%>
). with a simple filter &
to unescape user-provided values. By default, all values are escaped.
To specify variable values, place them in the template-values.json
within the root module directory. You can also specify the path to this configuration file using the TEMPLATE_VALUES_FILE_PATH
variable. For example, by executing TEMPLATE_VALUES_FILE_PATH=templates/values.json pos-cli deploy staging
the templates/values.json
file will be used as values for templates:
TEMPLATE_VALUES_FILE_PATH=templates/values.json pos-cli deploy staging
Directory structure with template-values.json
:
modules
└──admincms
├── template-values.json
├── private
│ └── graphql
│ ├── get_models.graphql
│ └── get_pages.graphql
└── public
└── views
└── pages
└── admin.liquid
Template Usage Example:
A page with this code
---
slug: <%= &desired_location =%>
---
This is using templates <%= what =%> !
An example template-values.json
:
{
"desired_location": "index",
"what": "magic"
}
Will result during deploy/sync in:
---
slug: index
---
This is using templates magic!
Migrations are files that contain executable Liquid code (including GraphQL) code, which you can run across different environments. These files also enable you to keep a record of what scripts have been executed, making it easier to track changes and updates.
This is particularly useful if you want to execute the same code on multiple environments after the code has been deployed, like seeding databases with initial data.
For detailed information:
- Read our documentation on Migrations
- or follow the step-by-step guide on Migrating Data.
List all migrations that have been deployed to the server, along with their current status:
pos-cli migrations list [environment] [name]
To create a new migration, use the generate
command with a specified name. A timestamp is automatically prepended to the name to ensure that migrations are executed in the order they were created:
pos-cli migrations generate [environment] [name]
Migrations are executed automatically during deployment.
To execute a migration manually, use the run
command. Before running a migration, ensure that the migration file has been synchronized with the intended environment.
The migration is identified by the filename without the extension, or simply by the timestamp.
pos-cli migrations run [environment] [name]
Example:
pos-cli migrations run staging 20190715132951_update_admin_password
This command manually runs a specific migration script that updates an admin password in the staging environment.
This function allows you to export data from your environment to a specified file in JSON format.
Command:
pos-cli data export staging --path=data.json
For more comprehensive guidance on exporting data using the CLI, REST API, and GraphQL, read our documentation on Data Export.
Use this command to import data from a JSON file that follows the proper data structure into your environment:
pos-cli data import staging --path=data.json
For detailed instructions on importing data with different technologies, read our documentation on Data Import Using CSV format.
This command removes data entries from your Instance without altering the underlying data structure:
pos-cli data clean staging
For example, if your model schema is car
and it contains 10 entries, this operation will remove these entries but the car
schema itself will remain intact.
This function is particularly useful for clearing data when testing your imports/exports, or for resetting your database to a fresh state between tests.
Important: This operation is irreversible. The pos-cli will request confirmation twice before proceeding to ensure that you do not accidentally remove data.
To start the local HTTP server that hosts the GUI, execute the following command:
pos-cli gui serve [environment]
Example: pos-cli gui serve staging
You can access the platformOS Admin GUI by visiting http://localhost:3333.
If you are working on multiple platformOS environments or projects, you can run several instances simultaneously by setting different port numbers for each instance. This is useful when you need to develop or test multiple environments.
By default, the platformOS Admin GUI runs on http://localhost:3333
. To work on multiple environments simultaneously, you can specify different ports using the --port
flag. For example, to serve the staging
environment on port 3337
, use:
pos-cli gui serve staging --port 3337
This allows you to access the staging environment at http://localhost:3337
, while leaving the default port available for other instances. You can repeat this with other environments by assigning unique port numbers.
If you want to open the platformOS Admin in your browser when the GUI server starts (as soon as gui serve
is running), include --open
(-o
) in your command:
pos-cli gui serve [environment] -o
For routine tasks, you might want both the GUI server (gui serve
) and data synchronization (sync
) to run simultaneously. You can achieve this with a single command:
pos-cli gui serve [environment] -o --sync
To interact with your instance's database using GraphQL, navigate to the GraphiQL interface at in your web browser:
http://localhost:3333/gui/graphql
The sidebar includes schema documentation for reference.
For experimenting and evaluating Liquid templates directly on your Instance, access the Liquid evaluator page in your browser:
http://localhost:3333/gui/liquid
This interface allows you to test and refine Liquid code within the context of your platformOS environment.
Generators are tools provided by various modules that allow you to quickly create files necessary for your project.
For example, the core module includes a command
generator, which you can use to quickly produce specific files like this:
pos-cli generate modules/core/generators/command users/create
If you need guidance or additional information about how to use a specific generator, you can access the help documentation with the following command:
pos-cli generate modules/core/generators/command --generator-help
The pos-cli gui serve
command uses a distinct build process for the GraphiQL interface located in the gui/editor/graphql
directory.
To prepare for development, you first need to install all necessary dependencies:
npm ci
Then, you can start the development environment by executing:
npm start
Once your development work is done, the next step is to build the production assets to ensure everything is optimized for deployment:
npm run build
After building the production assets, make sure to commit your changes to the repository.