nomadweb/backend/app/data/social_profiles.py
eric bdf0516197 Fix dating match gate and expand seed data for usable demos.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-04 06:18:25 -05:00

103 lines
5.0 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""Nomad matching candidate profiles — adapted from NomadCNA business logic."""
MATCH_INTENTS = ("friends", "dating", "partner", "roommate", "cofounder", "explore")
CANDIDATE_PROFILES = [
{
"id": "p1", "userId": "u1", "name": "小林", "location": "清迈", "citySlug": "chiangmai",
"gender": "女", "single": "是", "bio": "远程前端,喜欢咖啡和徒步。",
"photo": "🧳", "tags": ["远程", "咖啡", "徒步"],
"lookingFor": ["friends", "dating", "explore"],
},
{
"id": "p2", "userId": "u2", "name": "Marco", "location": "里斯本", "citySlug": "lisbon",
"gender": "男", "single": "是", "bio": "全栈工程师,欧洲旅居第三年。",
"photo": "💻", "tags": ["全栈", "欧洲", "冲浪"],
"lookingFor": ["friends", "cofounder", "explore"],
},
{
"id": "p3", "userId": "u3", "name": "Yuki", "location": "巴厘岛", "citySlug": "bali",
"gender": "女", "single": "否", "bio": "设计师,寻找合租室友。",
"photo": "🎨", "tags": ["设计", "瑜伽", "合租"],
"lookingFor": ["roommate", "friends"],
},
{
"id": "p4", "userId": "u4", "name": "Alex", "location": "墨西哥城", "citySlug": "mexico",
"gender": "男", "single": "是", "bio": "独立开发者,拉美时区常驻。",
"photo": "🚀", "tags": ["独立开发", "拉美"],
"lookingFor": ["cofounder", "friends", "dating"],
},
{
"id": "p5", "userId": "u5", "name": "Sara", "location": "巴塞罗那", "citySlug": "barcelona",
"gender": "女", "single": "是", "bio": "产品运营,热爱美食与市集。",
"photo": "☕", "tags": ["产品", "美食"],
"lookingFor": ["dating", "partner", "friends"],
},
{
"id": "p6", "userId": "u6", "name": "Ken", "location": "东京", "citySlug": "tokyo",
"gender": "男", "single": "是", "bio": "数据分析师,东亚签证达人。",
"photo": "📊", "tags": ["数据", "签证"],
"lookingFor": ["friends", "explore"],
},
{
"id": "p7", "userId": "u7", "name": "Lina", "location": "大理", "citySlug": "dali",
"gender": "女", "single": "是", "bio": "内容创作者,慢生活倡导者。",
"photo": "📷", "tags": ["内容", "慢生活"],
"lookingFor": ["friends", "dating", "roommate"],
},
{
"id": "p8", "userId": "u8", "name": "Devon", "location": "柏林", "citySlug": "berlin",
"gender": "非二元", "single": "是", "bio": "DevOps,开源社区活跃成员。",
"photo": "🖥️", "tags": ["DevOps", "开源"],
"lookingFor": ["cofounder", "friends"],
},
{
"id": "p9", "userId": "u9", "name": "Sofia", "location": "麦德林", "citySlug": "medellin",
"gender": "女", "single": "是", "bio": "自由设计师,北美时区接单,爱西语咖啡局。",
"photo": "🌺", "tags": ["设计", "西语", "拉美"],
"lookingFor": ["friends", "dating", "explore"],
},
{
"id": "p10", "userId": "u10", "name": "Omar", "location": "迪拜", "citySlug": "dubai",
"gender": "男", "single": "是", "bio": "增长顾问,常把迪拜当欧亚跳板。",
"photo": "🏙️", "tags": ["增长", "中东", "航班"],
"lookingFor": ["friends", "partner", "explore"],
},
{
"id": "p11", "userId": "u11", "name": "Nina", "location": "第比利斯", "citySlug": "tbilisi",
"gender": "女", "single": "是", "bio": "独立顾问,研究税务友好基地与旧城生活。",
"photo": "🍷", "tags": ["税务", "顾问", "欧洲"],
"lookingFor": ["friends", "cofounder"],
},
{
"id": "p12", "userId": "u12", "name": "Jin", "location": "首尔", "citySlug": "seoul",
"gender": "男", "single": "是", "bio": "移动端工程师,沉迷深夜联合办公。",
"photo": "🇰🇷", "tags": ["移动端", "效率", "网速"],
"lookingFor": ["friends", "roommate", "explore"],
},
{
"id": "p13", "userId": "u13", "name": "Priya", "location": "里斯本", "citySlug": "lisbon",
"gender": "女", "single": "是", "bio": "产品设计师,喜欢海边徒步与博物馆。",
"photo": "🌊", "tags": ["产品设计", "徒步"],
"lookingFor": ["dating", "friends"],
},
{
"id": "p14", "userId": "u14", "name": "Tom", "location": "清迈", "citySlug": "chiangmai",
"gender": "男", "single": "是", "bio": "后端工程师,咖啡店常客,周末骑摩托。",
"photo": "☕", "tags": ["后端", "咖啡", "摩托"],
"lookingFor": ["friends", "cofounder", "explore"],
},
{
"id": "p15", "userId": "u15", "name": "Mia", "location": "巴厘岛", "citySlug": "bali",
"gender": "女", "single": "是", "bio": "瑜伽老师兼内容创作者,寻找同频合租。",
"photo": "🧘", "tags": ["瑜伽", "内容", "合租"],
"lookingFor": ["roommate", "friends", "partner"],
},
{
"id": "p16", "userId": "u16", "name": "Leo", "location": "墨西哥城", "citySlug": "mexico",
"gender": "男", "single": "是", "bio": "创业者,做拉美远程协作工具。",
"photo": "🌮", "tags": ["创业", "拉美", "SaaS"],
"lookingFor": ["cofounder", "friends", "dating"],
},
]