-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpartykit.json
38 lines (38 loc) · 920 Bytes
/
partykit.json
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
{
"name": "tinyrooms",
"main": "src/server/MainServer.ts",
"parties": {
"auth": "src/server/AuthServer.ts",
"user": "src/server/UserServer.ts",
"rooms": "src/server/RoomsServer.ts",
"room": "src/server/RoomServer.ts"
},
"serve": {
"path": "out",
"build": {
"entry": [
"src/client/index.tsx",
"src/client/worker.ts",
"src/client/*.html",
"src/client/**/*.css",
"src/client/**/*.html",
"src/client/**/*.woff2",
"src/client/**/*.svg"
],
"outdir": "out",
"sourcemap": false,
"minify": true,
"loader": {
".css": "copy",
".html": "copy",
".woff2": "copy",
".svg": "copy"
}
}
},
"vars": {
"jwtSecret": "A long secret for hashing the JWT cookie",
"githubClientId": "Your GitHub app Id",
"githubClientSecret": "Your GitHub app Id's secret"
}
}