-
Notifications
You must be signed in to change notification settings - Fork 0
/
roll.ts
197 lines (192 loc) · 4.32 KB
/
roll.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// // Array of services
// const services = [
// {
// title: 'Telehealth',
// slug: 'telehealth',
// imageUrl: 'url_to_telehealth_image',
// },
// {
// title: 'Video prescription refill',
// slug: 'video-prescription-refill',
// imageUrl: 'url_to_video_prescription_refill_image',
// },
// {
// title: 'In-person doctor visit',
// slug: 'in-person-doctor-visit',
// imageUrl: 'url_to_in_person_doctor_visit_image',
// },
// {
// title: 'UTI consult',
// slug: 'uti-consult',
// imageUrl: 'url_to_uti_consult_image',
// },
// {
// title: 'ED consult',
// slug: 'ed-consult',
// imageUrl: 'url_to_ed_consult_image',
// },
// {
// title: 'Mental health consult',
// slug: 'mental-health-consult',
// imageUrl: 'url_to_mental_health_consult_image',
// },
// ];
// // Function to create services in the database
// const createServices = async () => {
// for (const service of services) {
// try {
// // Create service in the database
// await prisma.service.create({
// data: {
// title: service.title,
// slug: service.slug,
// imageUrl: service.imageUrl,
// },
// });
// console.log(`Service "${service.title}" created successfully.`);
// } catch (error) {
// console.error(`Error creating service "${service.title}":`, error);
// }
// }
// };
///////////////////////////////////////////////////
// // Array of specialties
// const specialties = [
// {
// title: 'Primary care',
// slug: 'primary-care',
// },
// {
// title: 'Dermatology',
// slug: 'dermatology',
// },
// {
// title: 'Pediatrics',
// slug: 'pediatrics',
// },
// {
// title: 'Men’s health',
// slug: 'mens-health',
// },
// {
// title: 'Women’s health',
// slug: 'womens-health',
// },
// {
// title: 'Dental',
// slug: 'dental',
// },
// ];
// // Function to create specialties in the database
// const createSpecialties = async () => {
// for (const specialty of specialties) {
// try {
// // Create specialty in the database
// await prisma.speciality.create({
// data: {
// title: specialty.title,
// slug: specialty.slug,
// },
// });
// console.log(`Specialty "${specialty.title}" created successfully.`);
// } catch (error) {
// console.error(`Error creating specialty "${specialty.title}":`, error);
// }
// }
// };
// // Array of symptoms
// const symptoms = [
// {
// title: 'Anxiety',
// slug: 'anxiety',
// },
// {
// title: 'Depression',
// slug: 'depression',
// },
// {
// title: 'Asthma',
// slug: 'asthma',
// },
// {
// title: 'Erectile Dysfunction',
// slug: 'erectile-dysfunction',
// },
// {
// title: 'Back pain',
// slug: 'back-pain',
// },
// {
// title: 'UTI',
// slug: 'uti',
// },
// {
// title: 'Flu, cough, or cold',
// slug: 'flu-cough-cold',
// },
// {
// title: 'Acne',
// slug: 'acne',
// },
// {
// title: 'Tooth pain',
// slug: 'tooth-pain',
// },
// {
// title: 'Vaginal itching',
// slug: 'vaginal-itching',
// },
// {
// title: 'Itchy skin',
// slug: 'itchy-skin',
// },
// {
// title: 'Ear infection',
// slug: 'ear-infection',
// },
// {
// title: 'Sore throat',
// slug: 'sore-throat',
// },
// {
// title: 'Rash',
// slug: 'rash',
// },
// {
// title: 'Migraine',
// slug: 'migraine',
// },
// {
// title: 'Diarrhea',
// slug: 'diarrhea',
// },
// {
// title: 'Eczema',
// slug: 'eczema',
// },
// {
// title: 'Dizziness',
// slug: 'dizziness',
// },
// {
// title: 'Fever',
// slug: 'fever',
// },
// ];
// // Function to create symptoms in the database
// const createSymptoms = async () => {
// for (const symptom of symptoms) {
// try {
// // Create symptom in the database
// await prisma.symptom.create({
// data: {
// title: symptom.title,
// slug: symptom.slug,
// },
// });
// console.log(`Symptom "${symptom.title}" created successfully.`);
// } catch (error) {
// console.error(`Error creating symptom "${symptom.title}":`, error);
// }
// }
// };