forked from writer/writer-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Mintlify components to Cloud deploy page and linked to Quickstart
- Loading branch information
1 parent
9b132bc
commit aa6edd4
Showing
2 changed files
with
145 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,167 +1,173 @@ | ||
--- | ||
title: "Cloud Deployment Using CLI" | ||
title: "Deploy to Writer Cloud" | ||
--- | ||
|
||
## Table of Contents | ||
|
||
2. [Basic Usage](#basic-usage) | ||
3. [Common Options](#common-options) | ||
4. [Commands](#commands) | ||
- [Deploy](#writer-cloud-deploy) | ||
- [Undeploy](#writer-cloud-undeploy) | ||
- [Logs](#writer-cloud-logs) | ||
5. [Environment Variables](#environment-variables) | ||
6. [API Key](#api-key) | ||
7. [Deployment Process](#deployment-process) | ||
8. [Example Workflow](#example-workflow) | ||
|
||
## Basic Usage | ||
## Basic usage | ||
|
||
The `writer cloud` command group includes the following commands: | ||
- `deploy` | ||
- `undeploy` | ||
- `logs` | ||
|
||
## Common Options | ||
## 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 | ||
|
||
### `writer cloud deploy` | ||
|
||
Deploys an app from the specified path to the Writer cloud. | ||
|
||
**Usage:** | ||
``` | ||
writer cloud deploy [OPTIONS] PATH | ||
``` | ||
|
||
**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:** | ||
``` | ||
writer cloud deploy hello --env VAR1=value1 --env VAR2=value2 | ||
``` | ||
|
||
**Description:** | ||
- Deploys the app located in the `PATH` folder. | ||
- Creates a deployment package, ignoring `.git` directories, `Dockerfile`s 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** | ||
|
||
``` | ||
Creating deployment package from path: /path/to/your/app | ||
[WARNING] Dockerfile found in project root. This will be ignored in the deployment package. | ||
Packing file: pyproject.toml | ||
Packing file: README.md | ||
... | ||
Uploading package to deployment server | ||
Package uploaded. Building... | ||
... | ||
Deployment successful | ||
URL: https://your_app_url | ||
``` | ||
|
||
### `writer cloud undeploy` | ||
|
||
Stops the deployed app and makes it unavailable. | ||
|
||
**Usage:** | ||
``` | ||
writer cloud undeploy [OPTIONS] | ||
``` | ||
|
||
**Options:** | ||
- `--api-key`: Writer API key for authentication. If not provided, you will be prompted to enter it. | ||
- `--verbose, -v`: Enable verbose output. | ||
|
||
**Example:** | ||
``` | ||
writer cloud undeploy | ||
``` | ||
|
||
**Description:** | ||
- Stops and removes the deployed app from the Writer cloud. | ||
|
||
### `writer cloud logs` | ||
|
||
Fetches logs from the deployed app. | ||
|
||
**Usage:** | ||
``` | ||
writer cloud logs [OPTIONS] | ||
``` | ||
|
||
**Options:** | ||
- `--api-key`: Writer API key for authentication. If not provided, you will be prompted to enter it. | ||
- `--verbose, -v`: Enable verbose output. | ||
|
||
**Example:** | ||
``` | ||
writer cloud logs | ||
``` | ||
|
||
**Description:** | ||
- Continuously fetches and displays logs from the deployed app. | ||
- Logs are ordered by date and time. | ||
|
||
**Output Example** | ||
|
||
``` | ||
2024-06-11 09:27:02.190646+00:00 [INFO] Starting container entrypoint... | ||
2024-06-11 09:27:03.798148+00:00 [INFO] BuildService - Downloading build files... | ||
... | ||
``` | ||
|
||
## Environment Variables | ||
<AccordionGroup> | ||
<Accordion title="writer cloud deploy"> | ||
Deploys an app from the specified path to the Writer cloud. | ||
|
||
**Usage:** | ||
``` | ||
writer cloud deploy [OPTIONS] PATH | ||
``` | ||
|
||
**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:** | ||
``` | ||
writer cloud deploy hello --env VAR1=value1 --env VAR2=value2 | ||
``` | ||
|
||
**Description:** | ||
- Deploys the app located in the `PATH` folder. | ||
- Creates a deployment package, ignoring `.git` directories, `Dockerfile`s 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** | ||
|
||
``` | ||
Creating deployment package from path: /path/to/your/app | ||
[WARNING] Dockerfile found in project root. This will be ignored in the deployment package. | ||
Packing file: pyproject.toml | ||
Packing file: README.md | ||
... | ||
Uploading package to deployment server | ||
Package uploaded. Building... | ||
... | ||
Deployment successful | ||
URL: https://your_app_url | ||
``` | ||
</Accordion> | ||
|
||
<Accordion title="writer cloud undeploy"> | ||
Stops the deployed app and makes it unavailable. | ||
|
||
**Usage:** | ||
``` | ||
writer cloud undeploy [OPTIONS] | ||
``` | ||
|
||
**Options:** | ||
- `--api-key`: Writer API key for authentication. If not provided, you will be prompted to enter it. | ||
- `--verbose, -v`: Enable verbose output. | ||
|
||
**Example:** | ||
``` | ||
writer cloud undeploy | ||
``` | ||
|
||
**Description:** | ||
- Stops and removes the deployed app from the Writer cloud. | ||
</Accordion> | ||
|
||
<Accordion title="writer cloud logs"> | ||
Fetches logs from the deployed app. | ||
|
||
**Usage:** | ||
``` | ||
writer cloud logs [OPTIONS] | ||
``` | ||
|
||
**Options:** | ||
- `--api-key`: Writer API key for authentication. If not provided, you will be prompted to enter it. | ||
- `--verbose, -v`: Enable verbose output. | ||
|
||
**Example:** | ||
``` | ||
writer cloud logs | ||
``` | ||
|
||
**Description:** | ||
- Continuously fetches and displays logs from the deployed app. | ||
- Logs are ordered by date and time. | ||
|
||
**Output Example** | ||
|
||
``` | ||
2024-06-11 09:27:02.190646+00:00 [INFO] Starting container entrypoint... | ||
2024-06-11 09:27:03.798148+00:00 [INFO] BuildService - Downloading build files... | ||
... | ||
``` | ||
</Accordion> | ||
</AccordionGroup> | ||
|
||
## 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. | ||
|
||
**Example:** | ||
``` | ||
writer cloud deploy hello --env DB_HOST=db.example.com --env DB_PORT=5432 | ||
``` | ||
|
||
In this example, `DB_HOST` and `DB_PORT` will be available to the app as environment variables. | ||
|
||
## API Key | ||
## 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:** | ||
``` | ||
writer cloud deploy /path/to/app --env DB_HOST=db.example.com --env DB_PORT=5432 | ||
``` | ||
|
||
2. **Fetching Logs:** | ||
``` | ||
writer cloud logs | ||
``` | ||
|
||
3. **Undeploying an App:** | ||
``` | ||
writer cloud undeploy | ||
``` | ||
## Deployment process | ||
|
||
<Steps> | ||
<Step title="Package Creation"> | ||
The CLI packages the app, excluding certain files (e.g., Dockerfile, `service_entrypoint.py`). | ||
</Step> | ||
|
||
<Step title="Upload Package"> | ||
The package is uploaded to the Writer deployment server. | ||
</Step> | ||
|
||
<Step title="Build and Deploy"> | ||
The server builds and deploys the app, making it accessible via a URL. | ||
</Step> | ||
|
||
<Step title="Environment Variables"> | ||
Specified environment variables are set, and `WRITER_API_KEY` is added by default. | ||
</Step> | ||
</Steps> | ||
|
||
## Example workflow | ||
|
||
<Steps> | ||
<Step title="Deploying an App"> | ||
```bash | ||
writer cloud deploy /path/to/app --env DB_HOST=db.example.com --env DB_PORT=5432 | ||
``` | ||
</Step> | ||
|
||
<Step title="Fetching Logs"> | ||
```bash | ||
writer cloud logs | ||
``` | ||
</Step> | ||
|
||
<Step title="Undeploying an App"> | ||
```bash | ||
writer cloud undeploy | ||
``` | ||
</Step> | ||
</Steps> | ||
|
||
By following this documentation, you should be able to effectively deploy and manage your Writer apps using the Writer Framework CLI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters