Skip to main content

Basic usage

The writer cloud command group includes the following commands:
  • deploy
  • undeploy
  • logs

Common options

These options are common across multiple commands:
  • --api-key: The Writer API key used for authentication. If not provided, you will be prompted to enter it.
  • --verbose, -v: Enable verbose output.

Commands

Deploys an app from the specified path to the Writer cloud.Usage:
Arguments:
  • PATH: The path to the folder containing the app to deploy.
Options:
  • --api-key: Writer API key for authentication. If not provided, you will be prompted to enter it.
  • --env, -e: Environment variables to set in the deployed app. Use the format VAR=value. Multiple environment variables can be specified by repeating the --env option.
  • --verbose, -v: Enable verbose output.
Example:
Description:
  • Deploys the app located in the PATH folder.
  • Creates a deployment package, ignoring .git directories, Dockerfiles and all files specified in .gitignore file.
  • Uploads the package to the deployment server.
  • The deployed app will have access to specified environment variables.
  • By default, the WRITER_API_KEY environment variable will be added to enable AI features.
Output Example
Stops the deployed app and makes it unavailable.Usage:
Options:
  • --api-key: Writer API key for authentication. If not provided, you will be prompted to enter it.
  • --verbose, -v: Enable verbose output.
Example:
Description:
  • Stops and removes the deployed app from the Writer cloud.
Fetches logs from the deployed app.Usage:
Options:
  • --api-key: Writer API key for authentication. If not provided, you will be prompted to enter it.
  • --verbose, -v: Enable verbose output.
Example:
Description:
  • Continuously fetches and displays logs from the deployed app.
  • Logs are ordered by date and time.
Output Example

Environment variables

When deploying an app, you can specify environment variables that will be available to the app during runtime. Use the --env option to pass these variables.
In this example, DB_HOST and DB_PORT will be available to the app as environment variables.

API key

The WRITER_API_KEY is crucial for deploying and managing apps. It is used for authenticating requests to the Writer cloud. If not provided as an option, the CLI will prompt you to enter it. The WRITER_API_KEY will also be added to the deployed app’s environment to enable AI features of the Writer framework.

Deployment process

1

Package Creation

The CLI packages the app, excluding certain files (e.g., Dockerfile, service_entrypoint.py).
2

Upload Package

The package is uploaded to the Writer deployment server.
3

Build and Deploy

The server builds and deploys the app, making it accessible via a URL.
4

Environment Variables

Specified environment variables are set, and WRITER_API_KEY is added by default.

Example workflow

1

Deploying an App

2

Fetching Logs

3

Undeploying an App

By following this documentation, you should be able to effectively deploy and manage your Writer apps using the Writer Framework CLI.