feat: sponsor seed data fixture from GroupMe contacts #323
Labels
No labels
domain:backend
domain:devops
domain:frontend
status:approved
status:in-progress
status:needs-fix
status:qa
type:bug
type:devops
type:feature
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
forgejo_admin/basketball-api#323
Loading…
Add table
Add a link
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?
Type
Feature
Lineage
Child of basketball-api#316 (sponsor outreach system). Independent — pure data file, no code dependencies.
Repo
forgejo_admin/basketball-apiUser Story
As an admin,
I want Marcus's 50+ sponsor contacts pre-loaded as structured data,
So that the seed endpoint can bulk-import them into the database.
Context
Marcus shared his sponsor contact list in the WKQ Stakeholders GroupMe chat (2026-04-03). Two large messages with business names and emails organized by category. This ticket parses that raw data into a structured JSON fixture.
The fixture will be consumed by
POST /sponsors/seed(built in a later ticket). Format must match the Sponsor model schema.File Targets
Files the agent should create:
data/sponsors_seed.json— JSON array of sponsor objectsFiles the agent should NOT touch:
Acceptance Criteria
data/sponsors_seed.jsoncontains all ~50 businesses from Marcus's GroupMe messagesbusiness_name,email,category(one of: food, financial, retail, automotive, construction, fitness, dental, grocery, other)json.load())Source Data
Financial:
Food:
Retail:
Automotive:
Construction:
Fitness:
Dental:
Grocery:
Test Expectations
python -c "import json; json.load(open('data/sponsors_seed.json'))"succeedsConstraints
Checklist
Related