You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: GETTING_STARTED.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Getting Started with QuantumFlow
1
+
# Getting Started with Singularity.Workflow
2
2
3
-
QuantumFlow is an Elixir implementation of [QuantumFlow](https://github.com/singularity_workflow-dev/QuantumFlow), a database-driven DAG execution engine. This guide walks you through installation, basic setup, and running your first workflow.
3
+
Singularity.Workflow is an Elixir implementation of [Singularity.Workflow](https://github.com/singularity_workflow-dev/Singularity.Workflow), a database-driven DAG execution engine. This guide walks you through installation, basic setup, and running your first workflow.
4
4
5
5
## Installation
6
6
@@ -22,15 +22,15 @@ mix deps.get
22
22
23
23
## Database Setup
24
24
25
-
QuantumFlow requires PostgreSQL 14+ with the `pgmq` extension:
25
+
Singularity.Workflow requires PostgreSQL 14+ with the `pgmq` extension:
26
26
27
27
### 1. Create a PostgreSQL Database
28
28
29
29
```bash
30
30
createdb my_app
31
31
```
32
32
33
-
### 2. Add QuantumFlow Repository
33
+
### 2. Add Singularity.Workflow Repository
34
34
35
35
Configure Ecto in your app to include the Singularity.Workflow.Repo:
36
36
@@ -57,7 +57,7 @@ psql my_app -c "CREATE EXTENSION IF NOT EXISTS pgmq"
57
57
### 4. Run Migrations
58
58
59
59
```bash
60
-
# Generate migrations for QuantumFlow tables
60
+
# Generate migrations for Singularity.Workflow tables
0 commit comments