Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Platform-OS/pos-cli
CLI for platformOS
https://github.com/Platform-OS/pos-cli
Last synced: 3 months ago
JSON representation
CLI for platformOS
- Host: GitHub
- URL: https://github.com/Platform-OS/pos-cli
- Owner: Platform-OS
- License: other
- Created: 2017-07-12T10:40:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-21T13:04:58.000Z (5 months ago)
- Last Synced: 2024-06-21T21:02:40.969Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 13.8 MB
- Stars: 16
- Watchers: 16
- Forks: 11
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## Overview
**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](https://github.com/mdyd-dev/pos-cli/issues) and let us know.
Run all commands from the project root directory, one level above the `app` or `modules` directory.
### Requirements
`pos-cli` requires Node.js version 18 or higher to function correctly. [See instructions for installing Node.js on your platform](https://nodejs.org/en/download/).
## Installation and Update
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
## Usage
### Adding Environments and Authenticating
To authenticate, you'll need your [**Partner Portal**](https://partners.platformos.com/) account credentials. If you don't have a Partner, follow the [Sign up on the Partner Portal guide](https://documentation.platformos.com/get-started/installation-and-configuration/#sign-up-on-the-partner-portal).
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.
### Syncing Changes
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.
#### Automatically Opening the Browser
Include the `--open` (`-o`) option with your sync command to automatically launch your Instance in the default web browser:
pos-cli sync [environment] -o
#### ConcurrencyBy 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.
### Deploying ChangesTo 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`.
### Code Audit
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.
### Reading Logs
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](https://documentation.platformos.com/api-reference/liquid/platformos-tags#log).
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](https://documentation.platformos.com/api-reference/liquid/platformos-tags#log).
### Logs V2
#### 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
#### ROADMAP
- alerts
- alerts delete
- better errors
- GUI### Listing environments
If you need to recall the names of your environments or their corresponding URLs, use the following command:
pos-cli env list
### Initializing the directory structure
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](https://github.com/Rich-Harris/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.
### Managing Constants
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"### Modules
#### List
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.
#### Initialiting a New Module
To create a new module using a template from a starter repository, use the following command, where `` is your desired module name:
pos-cli modules init
This command sets up a new directory within the `modules/` folder, pulling the initial structure and content from the [Platform-OS module template repository](https://github.com/Platform-OS/pos-module-template).
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#### Installation
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 [module name]
pos-cli deploy#### Remove
To remove a module from your application:
pos-cli modules remove [environment]
#### Publishing
To publish a module to our module repository,
1. [Create the module on the Partner Portal](https://partners.platformos.com/pos_modules/new) and give it a unique name.
2. Create a separate directory for your module and run `pos-cli init ` to create necessary directory structure.mkdir ; cd
pos-cli init3. After preparing your module, release the new version and then publish it:
pos-cli modules version x.x.x
pos-cli modules push --email#### Pulling module codebase
Fetch the codebase of a module that is deployed on your instance:
pos-cli modules pull
This will download and unpack module files into the `modules/` directory.
#### Downloading module version codebase
Download the public codebase of a released module:
pos-cli modules download
##### Module TemplatesTemplates 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`:
```shell
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
```yaml
---
slug: <%= &desired_location =%>
---This is using templates <%= what =%> !
```An example `template-values.json`:
```json
{
"desired_location": "index",
"what": "magic"
}
```Will result during deploy/sync in:
```yaml
---
slug: index
---This is using templates magic!
```### Migrations
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](https://documentation.platformos.com/developer-guide/platformos-workflow/directory-structure#migrations)
* or follow the [step-by-step guide on Migrating Data](https://documentation.platformos.com/developer-guide/data-import-export/migrating-data).#### List
List all migrations that have been deployed to the server, along with their current status:
pos-cli migrations list [environment] [name]
#### Generate
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.
#### Run
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.
### Data
#### Export
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](https://documentation.platformos.com/developer-guide/data-import-export/export).
#### Import
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](https://documentation.platformos.com/developer-guide/data-import-export/import).
#### Clean Data (Staging Only)
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.
### Admin - Graphical Interface (GUI)
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](http://localhost:3333).
![Screenshot of the Admin GUI](docs/images/admin-gui.png)
#### Opening Admin Automatically
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
#### Syncing with GUIFor 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
#### Exploring with GraphiQL Browser
To interact with your instance's database using GraphQL, navigate to the GraphiQL interface at in your web browser:
[http://localhost:3333/gui/graphql](http://localhost:3333/gui/graphql)
![Screenshot of the GraphiQL Browser](docs/images/graphiql.png)
The sidebar includes schema documentation for reference.
#### Liquid Evaluator
For experimenting and evaluating Liquid templates directly on your Instance, access the Liquid evaluator page in your browser:
[http://localhost:3333/gui/liquid](http://localhost:3333/gui/liquid)
This interface allows you to test and refine Liquid code within the context of your platformOS environment.
### Generators
Generators are tools provided by various modules that allow you to quickly create files necessary for your project.
For example, the [core module](https://github.com/Platform-OS/pos-module-core) 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
## Development
The `pos-cli gui serve` command uses a distinct build process for the GraphiQL interface located in the `gui/editor/graphql` directory.
### Setting Up Development Environment
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
### Building and Committing Changes
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.