Is your feature request related to a problem?
As the platform expands with more features and tables, we need to continuously update the seeder files. This leads to challenges in testing new features and changes locally, especially at scale.
we are using this command to seed database with basic data
uv run python -m app.seed_data.seed_data
so we should add another such command to populate the db with larger set of records
Describe the solution you'd like
- Introduce a command like
seed scale 500 to populate data with seed data.
- Ensure that this functionality supports testing from both backend and frontend perspectives.
- Facilitate local testing when new features are introduced or modifications are made
Is your feature request related to a problem?
As the platform expands with more features and tables, we need to continuously update the seeder files. This leads to challenges in testing new features and changes locally, especially at scale.
we are using this command to seed database with basic data
uv run python -m app.seed_data.seed_dataso we should add another such command to populate the db with larger set of records
Describe the solution you'd like
seed scale 500to populate data with seed data.