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
* fix: update import syntax, remove deprecated code, and clarify documentation
Refactors import statements to use default imports, removes unused simulateFailure step,
and updates instructions for consistency.
Also corrects minor formatting issues in docs.
* fix(docs): correct installation prerequisites and remove redundant content
Update the documentation to fix a typo in the create-first-flow guide, and revise the prerequisites
in the install-pgflow guide by specifying the correct Deno version.
* feat: update flow and task files for greeting workflow and rename related components
Refactors the example to create a greeting flow instead of website analysis, including
modifying flow definitions, task implementations, and worker setup for the new flow.
Also updates migration and documentation to reflect the new greeting workflow.
* docs: update documentation to mark page as draft and clarify structure guidance
- Set the page as a draft to prevent premature publication
- Slight wording adjustment for clarity in the introduction
- Corrected a minor formatting issue at the end of the file
* refactor: update flow step names and references for consistency in documentation
- Renamed 'format_name' step to 'full_name' in SQL, flow definition, and documentation
- Updated corresponding references and output examples across multiple files
- Minor formatting adjustments for clarity and consistency in the tutorials and SQL snippets
* feat: add website analysis workflow and update documentation
- Introduced a new code example demonstrating a website analysis flow with scraping, summarization,
and tagging steps
- Updated documentation to correct typo in tagline and improve clarity of workflow orchestration
examples
- Refactored existing workflow code to include the new analyze_website flow, replacing previous
placeholder
- Minor formatting and consistency improvements across code and docs
* docs: update tutorial content, improve structure, and clarify installation steps
- Revised 'create-first-flow' MDX to update example workflow description and add step details
- Enhanced readability by adjusting formatting and removing deprecated sections
- Clarified 'install-pgflow' instructions with a new 'What was installed?' section
- Removed outdated navigation links from index page for better clarity and accuracy
* docs: update documentation to remove NotProductionReady component and improve flow creation
instructions
- Removed deprecated NotProductionReady component from compile-to-sql.md
- Clarified steps for compiling, examining, and applying SQL migrations
- Changed note styling from Aside to note for better emphasis
- Minor formatting adjustments for clarity and consistency
* docs: add new guide on versioning flows and remove deprecated flow management warnings
- Introduced a new documentation page detailing safe flow versioning strategies
- Removed outdated caution and danger sections from existing flow compilation docs
- Updated content to include best practices for managing flow migrations and updates
- Ensured consistency across documentation regarding flow versioning and modification guidelines
* docs: update documentation to remove aside in compile-to-sql and clarify flow creation steps
- Removed deprecated aside note in compile-to-sql.md
- Clarified project structure and flow creation instructions in create-first-flow.md
- Improved explanations of flow features and key concepts for better understanding
* chore(docs): update manual installation instructions for migration files, environment setup,
and runtime policy
- Clarify steps to download, extract, and copy migration files
- Add instructions for creating environment variables with proper URL encoding
- Include configuration changes for connection pooling and Edge Runtime policy
- Update restart commands to reflect the latest setup process
* docs: update prerequisite requirements in getting started guide
- Clarify that Deno version 1.45.x or higher is required before compiling flows to SQL
* docs: add NotProductionReady component to multiple docs and remove redundant import
* docs: remove draft status from organize-flows-codebase documentation
@@ -10,7 +10,7 @@ import NotProductionReady from '@/components/NotProductionReady.astro';
10
10
11
11
Now that we've defined our flow, we need to register it in the database. pgflow provides a CLI tool that compiles your TypeScript flow definition into SQL migrations that can be applied to your Supabase database.
12
12
13
-
<NotProductionReady/>
13
+
<NotProductionReady/>
14
14
15
15
## What is compilation?
16
16
@@ -27,163 +27,66 @@ This is an essential step because pgflow's runtime executes flows based on their
27
27
Before continuing, make sure you have:
28
28
- Completed the [flow definition](/getting-started/create-first-flow/) from the previous step
29
29
- The Supabase CLI installed and configured
30
+
- Deno version 1.45.x or higher
30
31
</Aside>
31
32
32
-
<Steps>
33
-
1.### Compile the flow to SQL
33
+
### 1. Compile the flow to SQL
34
34
35
-
Run the pgflow compile command, pointing to your flow definition file:
35
+
Run the pgflow compile command, pointing to your flow definition file:
0 commit comments