Add --db-engine CLI option #280
Labels
No labels
architecture
authentication
backend
bug
ci/cd
cleanup
documentation
duplicate
enhancement
good first issue
help wanted
in progress
invalid
media
mobile
new feature
notes
packaging
question
ui
upstream breaking change
voice
waiting user input
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
platypush/platypush#280
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As of now it's possible to override the database engine either through the configuration file (
main.db -> engineordb -> engineattributes) or by setting the working directory (via CLI, configuration file or environment variable).The latter option however only supports the case for a SQLite database, where the db file will just be stored under a different working directory.
For sake of flexibility (and consistency with other core options), we should also provide a
--db-engineCLI option that accepts a SQLAlchemy/JDBC URL string.