Skip to content

Commit c19cfa2

Browse files
committed
removed v0.0.3b
1 parent a7b581d commit c19cfa2

5 files changed

Lines changed: 1 addition & 36 deletions

File tree

docs/docs/docker-compose-setup.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -82,34 +82,6 @@ Exosphere uses MongoDB as the database to manage states. You can either have mon
8282
- Exosphere State Manager: [http://localhost:8000](http://localhost:8000)
8383

8484

85-
## Beta Version
86-
87-
To run the latest beta version of Exosphere with the newest features, replace container tags with `beta-latest`:
88-
89-
=== ".env File"
90-
91-
```bash
92-
EXOSPHERE_TAG=beta-latest
93-
```
94-
=== "Environment Variables"
95-
96-
```bash
97-
export EXOSPHERE_TAG=beta-latest
98-
```
99-
100-
Get the docker image running:
101-
102-
=== "Cloud Mongodb"
103-
104-
```bash
105-
docker compose -f docker-compose.yml up -d
106-
```
107-
=== "Local Mongodb"
108-
109-
```bash
110-
docker compose -f docker-compose-with-mongodb.yml up -d
111-
```
112-
11385
## Access Your Services
11486

11587
After running the Docker Compose command:

docs/docs/exosphere/concepts.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ graph TB
5757
- **Cron Scheduling**: Schedule automatic graph execution using standard cron expressions
5858
- **Unattended Operation**: Workflows run automatically without manual intervention
5959
- **Multiple Schedules**: Each graph can have multiple triggers with different schedules
60-
- **Beta**: Available in `beta-latest` Docker tag and SDK version `0.0.3b1`
6160

6261
## How They Work Together
6362

docs/docs/exosphere/graph-components.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,6 @@ Graph-level key-value storage for shared state:
101101

102102
Schedule automatic graph execution using cron expressions:
103103

104-
!!! info "Beta Feature"
105-
Available in `beta-latest` Docker tag and SDK version `0.0.3b1`
106-
107104
```json
108105
{
109106
"triggers": [

docs/docs/exosphere/python-sdk-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async def create_graph():
5757
secrets={"api_key": "your-key"},
5858
retry_policy=retry_policy,
5959
store_config=store_config,
60-
triggers=triggers # Beta: SDK version 0.0.3b1
60+
triggers=triggers
6161
)
6262
return result
6363
```

docs/docs/exosphere/triggers.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Triggers
22

3-
!!! warning "Beta Feature"
4-
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.
5-
63
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.
74

85
## Overview

0 commit comments

Comments
 (0)