rdme
- ReadMe's CLI
![](https://d3vv6lp55qjaqc.cloudfront.net/items/1M3C3j0I0s0j3T362344/Untitled-2.png)
![CircleCI](https://circleci.com/gh/readmeio/rdme.svg?style=svg)
Table of Contents
About rdme
rdme
is the CLI wrapper for ReadMe's RESTful API. It allows you to upload and edit Swagger and OAS files associated with projects you create on ReadMe. Additionally, you can sync documentation with your project, and manage project versions.
Configuration
Installation
npm install rdme
Authentication
If you authenticate rdme
to your ReadMe project, we will save your API key to a local configuration file (~/.config/configstore/rdme-production.json
) so you will not have to provide the --key
option to commands that require it.
rdme login
Usage
If you wish to get more information about any command within rdme
, you can execute rdme help <command>
or rdme <command> --help
. You an also execute rdme help
to see a global list of commands that rdme
offers.
Common rdme
options
--key <string>
: The API key associated with your ReadMe project. You can obtain this from your dashboard, or alternatively if you log in with rdme login
, we will save your API key to a local configuration file (~/.config/configstore/rdme-production.json
), saving you the hassle of having to supply this argument on commands that have it.--version <string>
: Your project version.
Swagger / OpenAPI
ReadMe supports both Swagger 2.0 and OpenAPI 3.0.
Uploading a new API description to ReadMe
This will upload path-to-swagger.json
to your project and return an ID and URL for you to later update your file, and view it in the client.
rdme swagger [path-to-file.json]
Editing (resync) an existing API description
This will edit (resync) an existing API description (identified by --id
) within your ReadMe project.
rdme swagger [path-to-file.json] --id={existing-id}
Uploading or editing an API description in a project version
You can additional include a version flag, specifying the target version for your file's destination
rdme swagger [path-to-file.json] --version={project-version}
rdme swagger [path-to-file.json] --id={existing-id} --version={project-version}
Omitting the file path
If you run rdme
within a directory that contains your Swagger or OAS file, you can omit the file path. We will then look for a file with the following names, and upload that: swagger.json
, swagger.yaml
, openapi.json
, and openapi.yaml
rdme swagger
Docs
Syncing a folder of Markdown docs to ReadMe
rdme docs path-to-markdown-files --version={project-version}
Edit a single ReadMe doc on your local machine
rdme docs:edit <slug> --version={project-version}
Versions
Get all versions associated with your project
rdme versions
If you wish to see the raw output from our API in this response, supply the --raw
flag.
Get all information about a particular version
rdme versions --version={project-version}
If you wish to see the raw output from our API in this response, supply the --raw
flag.
Create a new version
rdme versions:create <version>
Automating this process
If you wish to automate the process of creating a new project version, and not have the CLI prompt you for input, you can do so by supplying the necessary flags to versions:create
.
For example:
rdme versions:create <version> --fork={version-fork} --codename={version-name} --main --beta
See rdme versions:create --help
for a full list of flags.
Update a version
rdme versions:update <version>
Like versions:create
, if you wish to automate this process and not be blocked by CLI input, you can supply the necessary flags to this command. See rdme versions:update --help
or automating this process for more information.
Delete a version
You can remove a specific version from your project, as well as all of the attached specs
rdme versions:delete <version>
Open your ReadMe project in your browser
If you are logged in, this will open the project in your browser:
rdme open
Future
We are continually expanding and improving the offerings of this application as we expand our public API and are able. Some interactions may change over time, but we will do our best to retain backwards compatibility.