Port meetups, discussions, gigs, dating/chat, VIP pay (ZPay/XorPay), MiroTalk live, digital academy, and ebook reader. Add persistent community_store, git-first deploy docs, and env template for production secrets. Co-authored-by: Cursor <cursoragent@cursor.com>
55 lines
2.5 KiB
Python
55 lines
2.5 KiB
Python
"""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": "chiang-mai",
|
||
"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-city",
|
||
"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"],
|
||
},
|
||
]
|