A cookiecutter template for a dbgen model repo
cookiecutter https://github.com/modelyst/dbgen-model-template --directory simple
repo_name
: The name of the parent directory of the model (which will most likely be initialized to a git repo)model_name
: The name of the model and the python module that dbgen will import fromversion
: The starting semantic version for this codebasedatabase_dsn
: The postgresql DSN to be written to the default dotenv file (.env) in the repo. This can be changed at anytime and it is advised that the raw password is not written directly here for any systems other than for local testing. Please see the DBgen configuration options for passing secret credentials to dbgen securely.clean
: A boolean indicating whether the example scripts should be written to the repo for reference. Default: True
cookiecutter https://github.com/modelyst/dbgen-model-template --directory tutorials/alice_bob_lab
repo_name
: The name of the parent directory of the model (which will most likely be initialized to a git repo)model_name
: The name of the model and the python module that dbgen will import fromversion
: The starting semantic version for this codebasedatabase_dsn
: The postgresql DSN to be written to the default dotenv file (.env) in the repo. This can be changed at anytime and it is advised that the raw password is not written directly here for any systems other than for local testing. Please see the DBgen configuration options for passing secret credentials to dbgen securely.