Commit 3f99133d by yiling.shen

Remove corrupted .gitlab-ci.yml and clean up repository

parent 19ebca36
test_job:
script: "echo 'Hello World'"
only:
- master
\ No newline at end of file
# 最简单的GitLab CI/CD配置
test_job:
script:
- echo "Hello World"
only:
- master
\ No newline at end of file
# 简化版GitLab CI/CD配置 - 用于测试
stages:
- test
simple_test:
stage: test
image: alpine:latest
# 移除标签限制,使用任何可用的Runner
# tags:
# - jarvis
script:
- echo "🚀 开始测试部署..."
- echo "📅 当前时间: $(date)"
- echo "🏥 项目: 患者画像回访话术系统"
- echo "✅ 测试成功!"
only:
- master
when: always
\ No newline at end of file
# 最简单的测试配置
test_job:
script:
- echo "Hello World"
- echo "测试成功"
only:
- master
\ No newline at end of file
...@@ -8,16 +8,16 @@ ...@@ -8,16 +8,16 @@
# 门诊映射配置 (基于实际数据分析结果) # 门诊映射配置 (基于实际数据分析结果)
CLINIC_MAPPING = { CLINIC_MAPPING = {
'学前街门诊': { '学前街门诊': {
'clinic_id': 'clinic_xuexian', 'clinic_id': 'clinic_xuexian',
'clinic_name': '学前街门诊', 'clinic_name': '学前街门诊',
'json_file': '诊所患者json/学前街门诊.json', 'json_file': '诊所患者json/学前街门诊.json',
'folder_name': 'clinic_xuexian', 'folder_name': 'clinic_xuexian',
'description': '通善学前街门诊', 'description': '通善学前街门诊',
'expected_patients': 765 'expected_patients': 765
}, },
'大丰门诊': { '大丰门诊': {
'clinic_id': 'clinic_dafeng', 'clinic_id': 'clinic_dafeng',
'clinic_name': '大丰门诊', 'clinic_name': '大丰门诊',
'json_file': '诊所患者json/大丰门诊.json', 'json_file': '诊所患者json/大丰门诊.json',
'folder_name': 'clinic_dafeng', 'folder_name': 'clinic_dafeng',
'description': '通善大丰门诊', 'description': '通善大丰门诊',
...@@ -26,7 +26,7 @@ CLINIC_MAPPING = { ...@@ -26,7 +26,7 @@ CLINIC_MAPPING = {
'东亭门诊': { '东亭门诊': {
'clinic_id': 'clinic_dongting', 'clinic_id': 'clinic_dongting',
'clinic_name': '东亭门诊', 'clinic_name': '东亭门诊',
'json_file': '诊所患者json/东亭门诊.json', 'json_file': '诊所患者json/东亭门诊.json',
'folder_name': 'clinic_dongting', 'folder_name': 'clinic_dongting',
'description': '通善东亭门诊', 'description': '通善东亭门诊',
'expected_patients': 479 'expected_patients': 479
...@@ -40,7 +40,7 @@ CLINIC_MAPPING = { ...@@ -40,7 +40,7 @@ CLINIC_MAPPING = {
'expected_patients': 108 'expected_patients': 108
}, },
'红豆门诊': { '红豆门诊': {
'clinic_id': 'clinic_hongdou', 'clinic_id': 'clinic_hongdou',
'clinic_name': '红豆门诊', 'clinic_name': '红豆门诊',
'json_file': '诊所患者json/红豆门诊.json', 'json_file': '诊所患者json/红豆门诊.json',
'folder_name': 'clinic_hongdou', 'folder_name': 'clinic_hongdou',
...@@ -57,7 +57,7 @@ CLINIC_MAPPING = { ...@@ -57,7 +57,7 @@ CLINIC_MAPPING = {
}, },
'马山门诊': { '马山门诊': {
'clinic_id': 'clinic_mashan', 'clinic_id': 'clinic_mashan',
'clinic_name': '马山门诊', 'clinic_name': '马山门诊',
'json_file': '诊所患者json/马山门诊.json', 'json_file': '诊所患者json/马山门诊.json',
'folder_name': 'clinic_mashan', 'folder_name': 'clinic_mashan',
'description': '通善马山门诊', 'description': '通善马山门诊',
...@@ -74,7 +74,7 @@ CLINIC_MAPPING = { ...@@ -74,7 +74,7 @@ CLINIC_MAPPING = {
'新吴门诊': { '新吴门诊': {
'clinic_id': 'clinic_xinwu', 'clinic_id': 'clinic_xinwu',
'clinic_name': '新吴门诊', 'clinic_name': '新吴门诊',
'json_file': '诊所患者json/新吴门诊.json', 'json_file': '诊所患者json/新吴门诊.json',
'folder_name': 'clinic_xinwu', 'folder_name': 'clinic_xinwu',
'description': '通善新吴门诊', 'description': '通善新吴门诊',
'expected_patients': 297 'expected_patients': 297
...@@ -114,7 +114,7 @@ DEFAULT_USERS = [ ...@@ -114,7 +114,7 @@ DEFAULT_USERS = [
'real_name': '邵军', 'real_name': '邵军',
'clinic_name': '学前街门诊' 'clinic_name': '学前街门诊'
}, },
# 新吴门诊 (1名用户) # 新吴门诊 (1名用户)
{ {
'username': 'litingting', 'username': 'litingting',
...@@ -124,7 +124,7 @@ DEFAULT_USERS = [ ...@@ -124,7 +124,7 @@ DEFAULT_USERS = [
'real_name': '李婷婷', 'real_name': '李婷婷',
'clinic_name': '新吴门诊' 'clinic_name': '新吴门诊'
}, },
# 红豆门诊 (2名用户) # 红豆门诊 (2名用户)
{ {
'username': 'maqiuyi', 'username': 'maqiuyi',
...@@ -142,7 +142,7 @@ DEFAULT_USERS = [ ...@@ -142,7 +142,7 @@ DEFAULT_USERS = [
'real_name': '汤其敏', 'real_name': '汤其敏',
'clinic_name': '红豆门诊' 'clinic_name': '红豆门诊'
}, },
# 东亭门诊 (1名用户) # 东亭门诊 (1名用户)
{ {
'username': 'yueling', 'username': 'yueling',
...@@ -152,7 +152,7 @@ DEFAULT_USERS = [ ...@@ -152,7 +152,7 @@ DEFAULT_USERS = [
'real_name': '岳玲', 'real_name': '岳玲',
'clinic_name': '东亭门诊' 'clinic_name': '东亭门诊'
}, },
# 马山门诊 (2名用户) # 马山门诊 (2名用户)
{ {
'username': 'jijunlin', 'username': 'jijunlin',
...@@ -170,7 +170,7 @@ DEFAULT_USERS = [ ...@@ -170,7 +170,7 @@ DEFAULT_USERS = [
'real_name': '周丽萍', 'real_name': '周丽萍',
'clinic_name': '马山门诊' 'clinic_name': '马山门诊'
}, },
# 通善口腔医院总院 (2名用户) # 通善口腔医院总院 (2名用户)
{ {
'username': 'feimiaomiao', 'username': 'feimiaomiao',
...@@ -188,7 +188,7 @@ DEFAULT_USERS = [ ...@@ -188,7 +188,7 @@ DEFAULT_USERS = [
'real_name': '陈心语', 'real_name': '陈心语',
'clinic_name': '河埒门诊' 'clinic_name': '河埒门诊'
}, },
# 惠山门诊 (2名用户) # 惠山门诊 (2名用户)
{ {
'username': 'yanghong', 'username': 'yanghong',
...@@ -206,7 +206,7 @@ DEFAULT_USERS = [ ...@@ -206,7 +206,7 @@ DEFAULT_USERS = [
'real_name': '潘金丽', 'real_name': '潘金丽',
'clinic_name': '惠山门诊' 'clinic_name': '惠山门诊'
}, },
# 大丰门诊 (1名用户) # 大丰门诊 (1名用户)
{ {
'username': 'chenlin', 'username': 'chenlin',
...@@ -216,7 +216,7 @@ DEFAULT_USERS = [ ...@@ -216,7 +216,7 @@ DEFAULT_USERS = [
'real_name': '陈琳', 'real_name': '陈琳',
'clinic_name': '大丰门诊' 'clinic_name': '大丰门诊'
}, },
# 总部管理员 (最高权限) # 总部管理员 (最高权限)
{ {
'username': 'admin', 'username': 'admin',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment