-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathmain.wasp
239 lines (200 loc) · 6.55 KB
/
main.wasp
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
app CoverLetterGPT {
wasp: {
version: "^0.15.0"
},
title: "CoverLetterGPT",
head: [
"<meta charset=\"UTF-8\" />",
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />",
"<meta name=\"description\" content=\"Create Unique Cover Letters Based on Your Skills using GPT. Supercharge Your Job Search with Cover Letter GPT.\" />",
"<meta name=\"keywords\" content=\"cover letter, gpt, ai, job search, resume\" />",
"<meta name=\"author\" content=\"CoverLetterGPT\" />",
"<meta property=\"og:type\" content=\"website\" />",
"<meta property=\"og:url\" content=\"https://CoverLetterGPT.xyz\" />",
"<meta property=\"og:title\" content=\"CoverLetterGPT\" />",
"<meta property=\"og:description\" content=\"Create Unique Cover Letters Based on Your Skills using GPT. Supercharge Your Job Search with Cover Letter GPT.\" />",
"<meta property=\"og:image\" content=\"https://CoverLetterGPT.xyz/homepage.png\" />",
"<meta name=\"twitter:image\" content=\"https://CoverLetterGPT.xyz/homepage.png\" />",
"<meta name=\"twitter:image:width\" content=\"800\" />",
"<meta name=\"twitter:image:height\" content=\"400\" />",
"<meta name=\"twitter:card\" content=\"summary_large_image\" />",
],
// 🔐 Auth out of the box! https://wasp-lang.dev/docs/language/features#authentication--authorization
auth: {
userEntity: User,
methods: {
google: {
userSignupFields: import { getUserFields } from "@src/server/auth.ts",
configFn: import { config } from "@src/server/auth.ts",
},
},
onAuthFailedRedirectTo: "/",
},
client: {
rootComponent: import App from "@src/client/App",
setupFn: import clientSetup from "@src/client/clientSetup"
},
emailSender: {
provider: SendGrid,
defaultFrom: {
name: "CoverLetterGPT",
email: "vince@wasp-lang.dev",
},
},
}
/* 📡 These are the Wasp Routes (You can protect them easily w/ 'authRequired: true');
* https://wasp-lang.dev/docs/language/features#route
*/
route RootRoute { path: "/", to: MainPage }
page MainPage {
component: import Main from "@src/client/MainPage"
}
route CoverLetterPage { path: "/cover-letter/:id", to: CoverLetterPage }
page CoverLetterPage {
authRequired: true,
component: import CoverLetter from "@src/client/CoverLetterPage"
}
route LoginRoute { path: "/login", to: LoginPage }
page LoginPage {
component: import Login from "@src/client/LoginPage"
}
route JobsRoute { path: "/jobs", to: JobsPage }
page JobsPage {
authRequired: true,
component: import Jobs from "@src/client/JobsPage"
}
route ProfileRoute { path: "/profile", to: ProfilePage }
page ProfilePage {
authRequired: true,
component: import Profile from "@src/client/ProfilePage"
}
route CheckoutRoute { path: "/checkout", to: CheckoutPage }
page CheckoutPage {
authRequired: true,
component: import Checkout from "@src/client/CheckoutPage"
}
route TosRoute { path: "/tos", to: TosPage }
page TosPage {
component: import Tos from "@src/client/legal/TosPage"
}
route PrivacyRoute { path: "/privacy", to: PrivacyPage }
page PrivacyPage {
component: import Privacy from "@src/client/legal/PrivacyPolicyPage"
}
/* ⛑ These are the Wasp Operations, which allow the client and server to interact:
* https://wasp-lang.dev/docs/language/features#queries-and-actions-aka-operations
*/
// 📝 Actions aka Mutations
action generateCoverLetter {
fn: import { generateCoverLetter } from "@src/server/actions.js",
entities: [CoverLetter, User, LnPayment]
}
action createJob {
fn: import { createJob } from "@src/server/actions.js",
entities: [Job]
}
action updateJob {
fn: import { updateJob } from "@src/server/actions.js",
entities: [Job]
}
action updateCoverLetter {
fn: import { updateCoverLetter } from "@src/server/actions.js",
entities: [Job, CoverLetter, User, LnPayment]
}
action generateEdit {
fn: import { generateEdit } from "@src/server/actions.js",
entities: [CoverLetter, User, LnPayment]
}
action editCoverLetter {
fn: import { editCoverLetter } from "@src/server/actions.js",
entities: [CoverLetter]
}
action updateUser {
fn: import { updateUser } from "@src/server/actions.js",
entities: [User]
}
action deleteJob {
fn: import { deleteJob } from "@src/server/actions.js",
entities: [Job]
}
action stripePayment {
fn: import { stripePayment } from "@src/server/actions.js",
entities: [User]
}
action stripeGpt4Payment {
fn: import { stripeGpt4Payment } from "@src/server/actions.js",
entities: [User]
}
action stripeCreditsPayment {
fn: import { stripeCreditsPayment } from "@src/server/actions.js",
entities: [User]
}
action getLnLoginUrl {
fn: import { getLnLoginUrl } from "@src/server/ln.js",
entities: [User, LnData]
}
action decodeInvoice {
fn: import { decodeInvoice } from "@src/server/ln.js",
}
action updateLnPayment {
fn: import { updateLnPayment } from "@src/server/ln.js",
entities: [LnPayment]
}
action milliSatsToCents {
fn: import { milliSatsToCents } from "@src/server/ln.js",
}
// 📚 Queries
query getJobs {
fn: import { getJobs } from "@src/server/queries.js",
entities: [Job]
}
query getJob {
fn: import { getJob } from "@src/server/queries.js",
entities: [Job]
}
query getCoverLetter {
fn: import { getCoverLetter } from "@src/server/queries.js",
entities: [CoverLetter]
}
query getCoverLetters {
fn: import { getCoverLetters } from "@src/server/queries.js",
entities: [CoverLetter]
}
query getUserInfo {
fn: import { getUserInfo } from "@src/server/queries.js",
entities: [User]
}
query getLnUserInfo {
fn: import { getLnUserInfo } from "@src/server/ln.js",
entities: [User, LnData]
}
query getCoverLetterCount {
fn: import { getCoverLetterCount } from "@src/server/queries.js",
entities: [CoverLetter]
}
/* 📡 These are custom Wasp API Endpoints. Use them for callbacks, webhooks, etc.
* https://wasp-lang.dev/docs/language/features#apis
*/
api stripeWebhook {
fn: import { stripeWebhook } from "@src/server/webhooks.js",
entities: [User],
httpRoute: (POST, "/stripe-webhook")
}
api lnLogin {
fn: import { lnLogin } from "@src/server/ln.js",
entities: [User, LnData],
httpRoute: (GET, "/ln-login")
}
/* 🕵️♂️ These are the Wasp Cron Jobs. Use them to set up recurring tasks or queues:
* https://wasp-lang.dev/docs/language/features#jobs
*/
job checkUserSubscription {
executor: PgBoss,
perform: {
fn: import { updateUserSubscription } from "@src/server/workers/updateUserSubscription.js"
},
schedule: {
cron: "0 23 * * *"
},
entities: [User]
}