Common Workflows
Common Workflows in Spry.
Development Workflow
Follow these steps to set up and run your development environment:
Start development server with live reload
./spry.ts spc --fs dev-src.auto --destroy-first --conf sqlpage/sqlpage.json --watch --with-sqlpageLaunches a development server with automatic file watching and live reload.
List and execute tasks as needed
./spry.ts task ls
./spry.ts task prepare-dbProvides task management capabilities for database preparation and other setup tasks.
Deployment Workflow
Deploy your application to production with these steps:
Package and deploy to database
./spry.ts spc --package --conf sqlpage/sqlpage.json | sqlite3 production.dbPackages the application and deploys it to the production database.
Task Management Workflow
Manage and execute tasks efficiently:
Execute specific task
./spry.ts task my-task --verbose richRuns a specific task with detailed verbose output.
Execute all tasks in order
./spry.ts runbook --summarizeExecutes all tasks sequentially with a summary of results.
How is this guide?
Last updated on