TUTORIAL
1. Starting a new project2. Local development3. Version control4. Project management5. Remote environments6. Environment variables and secrets7. Databases and files8. Cloud services and Terraform9. full-stack-template specific details10. Production setup11. Running in production12. Creating a custom command13. Creating a custom plugin14. Creating a custom template15. Creating a zone16. Zone maintenance17. Zone monitoring18. Zone recoveryAPPENDIX A: Technology tutorialsAPPENDIX B: Software designAPPENDIX C: Modern server infrastructureAPPENDIX D: SecurityAPPENDIX E: Data protection and privacy (GDPR)

7. Databases and files

taito db connect:dev
select * from posts \g posts.sql
taito db connect:test                    # Access default database on command line
taito db connect:reportdb:test           # Access report database on command line
taito db proxy:test                      # Start a database proxy for GUI tool access
taito db import:test ./database/file.sql # Import a file to database
taito db dump:test ./tmp/dump.sql        # Dump database to a file
taito db log:test                        # View change log of database
taito db recreate:test                   # Recreate the database
taito db deploy:test                     # Deploy changes to database
taito db rebase:test                     # Rebase a database (db revert + db deploy)
taito db rebase:test b91b7b2             # Rebase a database (db revert + db deploy) from change 'b91b7b2'
taito db revert:test b91b7b2             # Revert a database to change 'b91b7b2'
taito db diff:test dev                   # Compare db schemas of dev and test environments
taito db copy between:test:dev           # Copy test database to dev
taito db copyquick between:test:dev      # Copy test database to dev (both databases in the same cluster, users may be blocked)
taito storage mount:dev                  # Mount default dev storage bucket to ./mnt/BUCKET
taito storage mount:dev ./mymount        # Mount default dev storage bucket to ./mymount
taito storage copy from:dev /sour ./dest # Copy files from default dev bucket
taito storage copy to:dev ./source /dest # Copy files to default dev bucket
taito storage sync from:dev /sour ./dest # Sync files from default dev bucket
taito storage sync to:dev ./source /dest # Sync files to default dev bucket

Next: 8. Cloud services and Terraform

1. Starting a new project
2. Local development
3. Version control
4. Project management
5. Remote environments
6. Environment variables and secrets
7. Databases and files
8. Cloud services and Terraform
9. full-stack-template specific details
10. Production setup
11. Running in production
12. Creating a custom command
13. Creating a custom plugin
14. Creating a custom template
15. Creating a zone
16. Zone maintenance
17. Zone monitoring
18. Zone recovery
APPENDIX A: Technology tutorials
APPENDIX B: Software design
APPENDIX C: Modern server infrastructure
APPENDIX D: Security
APPENDIX E: Data protection and privacy (GDPR)
Home
Docs
Tutorial
Plugins
Templates
Extensions