Add documentation for database export with Docker Compose#4473
Draft
neolefty wants to merge 3 commits into
Draft
Add documentation for database export with Docker Compose#4473neolefty wants to merge 3 commits into
neolefty wants to merge 3 commits into
Conversation
Allow users to specify a custom password when exporting SQL dumps instead of always using the hardcoded 'taxonworks' password. The default behavior remains unchanged - if no password is provided, it falls back to 'taxonworks'. - Add password input field to the export UI - Update controller to accept custom password parameter - Modify background job to pass password through - Update export logic to use custom password throughout 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Document the process of exporting database dumps when running TaxonWorks with Docker Compose, including: - Overview of the export process - Instructions for starting the delayed_job worker - Methods for monitoring export progress - Troubleshooting tips - Security notes about password handling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
4 tasks
Contributor
Author
|
Converted to Draft to wait until we resolve #4473 (which this branches off of) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Motivation
When testing the new custom password feature for database exports in a Docker Compose environment, we discovered that the export jobs would queue but not process because the delayed_job worker isn't automatically started. This documentation helps users understand and resolve this issue.
Test plan
🤖 Generated with Claude Code