Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions docs/docs/docker-compose-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,34 +82,6 @@ Exosphere uses MongoDB as the database to manage states. You can either have mon
- Exosphere State Manager: [http://localhost:8000](http://localhost:8000)


## Beta Version

To run the latest beta version of Exosphere with the newest features, replace container tags with `beta-latest`:

=== ".env File"

```bash
EXOSPHERE_TAG=beta-latest
```
=== "Environment Variables"

```bash
export EXOSPHERE_TAG=beta-latest
```

Get the docker image running:

=== "Cloud Mongodb"

```bash
docker compose -f docker-compose.yml up -d
```
=== "Local Mongodb"

```bash
docker compose -f docker-compose-with-mongodb.yml up -d
```

## Access Your Services

After running the Docker Compose command:
Expand Down
1 change: 0 additions & 1 deletion docs/docs/exosphere/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ graph TB
- **Cron Scheduling**: Schedule automatic graph execution using standard cron expressions
- **Unattended Operation**: Workflows run automatically without manual intervention
- **Multiple Schedules**: Each graph can have multiple triggers with different schedules
- **Beta**: Available in `beta-latest` Docker tag and SDK version `0.0.3b1`

## How They Work Together

Expand Down
3 changes: 0 additions & 3 deletions docs/docs/exosphere/graph-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ Graph-level key-value storage for shared state:

Schedule automatic graph execution using cron expressions:

!!! info "Beta Feature"
Available in `beta-latest` Docker tag and SDK version `0.0.3b1`

```json
{
"triggers": [
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/exosphere/python-sdk-graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def create_graph():
secrets={"api_key": "your-key"},
retry_policy=retry_policy,
store_config=store_config,
triggers=triggers # Beta: SDK version 0.0.3b1
triggers=triggers
)
return result
```
Expand Down
3 changes: 0 additions & 3 deletions docs/docs/exosphere/triggers.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Triggers

!!! warning "Beta Feature"
Triggers functionality is currently in beta and available under the `beta-latest` Docker tag and SDK version `0.0.3b1`. The API may change in future versions.

Triggers allow you to schedule automatic execution of your graphs using cron expressions. When a trigger is defined, Exosphere will automatically execute your graph at the specified times without requiring manual intervention.

## Overview
Expand Down