create-lx2-app 0.11.5-beta.cb1ede2 → 0.11.5-beta.e86db31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/index.js +27 -25
  2. package/package.json +2 -1
  3. package/template/packages/src/app/api/trpc/[trpc]/route.ts +34 -0
  4. package/template/packages/src/app/layout/with-trpc.tsx +37 -0
  5. package/template/packages/src/app/page/with-trpc.tsx +115 -0
  6. package/template/packages/src/components/greeting.tsx +21 -0
  7. package/template/packages/src/env/with-trpc-authjs-db.js +55 -0
  8. package/template/packages/src/env/with-trpc-authjs.js +53 -0
  9. package/template/packages/src/env/with-trpc-better-auth-db.js +54 -0
  10. package/template/packages/src/env/with-trpc-better-auth.js +52 -0
  11. package/template/packages/src/env/with-trpc-db.js +46 -0
  12. package/template/packages/src/env/with-trpc.js +44 -0
  13. package/template/packages/src/lib/api/client.tsx +85 -0
  14. package/template/packages/src/lib/api/query-client.ts +22 -0
  15. package/template/packages/src/lib/api/server.ts +31 -0
  16. package/template/packages/src/lib/utils.ts +7 -0
  17. package/template/packages/src/server/api/init/base.ts +103 -0
  18. package/template/packages/src/server/api/init/with-authjs-db.ts +132 -0
  19. package/template/packages/src/server/api/init/with-authjs.ts +130 -0
  20. package/template/packages/src/server/api/init/with-betterauth-db.ts +134 -0
  21. package/template/packages/src/server/api/init/with-betterauth.ts +132 -0
  22. package/template/packages/src/server/api/init/with-db.ts +106 -0
  23. package/template/packages/src/server/api/root.ts +23 -0
  24. package/template/packages/src/server/api/routers/post/base.ts +46 -0
  25. package/template/packages/src/server/api/routers/post/with-auth-drizzle.ts +44 -0
  26. package/template/packages/src/server/api/routers/post/with-auth.ts +43 -0
  27. package/template/packages/src/server/api/routers/post/with-drizzle.ts +36 -0
  28. package/template/packages/src/server/auth/better-auth.ts +1 -0
  29. package/template/packages/src/server/auth/config/authjs-with-drizzle.ts +1 -1
  30. package/template/packages/src/server/auth/config/authjs-with-prisma.ts +1 -1
  31. package/template/packages/src/server/auth/config/authjs.ts +1 -1
@@ -0,0 +1,130 @@
1
+ /**
2
+ * YOU PROBABLY DON'T NEED TO EDIT THIS FILE, UNLESS:
3
+ * 1. You want to modify request context (see Part 1).
4
+ * 2. You want to create a new middleware or type of procedure (see Part 3).
5
+ *
6
+ * TL;DR - This is where all the tRPC server stuff is created and plugged in.
7
+ * The pieces you will need to use are documented accordingly near the end.
8
+ */
9
+ import { initTRPC, TRPCError } from "@trpc/server"
10
+ import superjson from "superjson"
11
+ import { z, ZodError } from "zod"
12
+
13
+ import { auth } from "@/server/auth"
14
+
15
+ /**
16
+ * 1. CONTEXT
17
+ *
18
+ * This section defines the "contexts" that are available in the backend API.
19
+ *
20
+ * These allow you to access things when processing a request, like the database, the session, etc.
21
+ *
22
+ * This helper generates the "internals" for a tRPC context. The API handler and RSC clients each
23
+ * wrap this and provides the required context.
24
+ *
25
+ * @see https://trpc.io/docs/server/context
26
+ */
27
+ export async function createTRPCContext(opts: { headers: Headers }) {
28
+ const session = await auth()
29
+
30
+ return {
31
+ session,
32
+ ...opts,
33
+ }
34
+ }
35
+
36
+ /**
37
+ * 2. INITIALIZATION
38
+ *
39
+ * This is where the tRPC API is initialized, connecting the context and transformer. We also parse
40
+ * ZodErrors so that you get typesafety on the frontend if your procedure fails due to validation
41
+ * errors on the backend.
42
+ */
43
+ const t = initTRPC.context<typeof createTRPCContext>().create({
44
+ transformer: superjson,
45
+ errorFormatter({ shape, error }) {
46
+ return {
47
+ ...shape,
48
+ data: {
49
+ ...shape.data,
50
+ zodError:
51
+ error.cause instanceof ZodError ? z.treeifyError(error.cause) : null,
52
+ },
53
+ }
54
+ },
55
+ })
56
+
57
+ /**
58
+ * Create a server-side caller.
59
+ *
60
+ * @see https://trpc.io/docs/server/server-side-calls
61
+ */
62
+ export const createCallerFactory = t.createCallerFactory
63
+
64
+ /**
65
+ * 3. ROUTER & PROCEDURE (THE IMPORTANT BIT)
66
+ *
67
+ * These are the pieces you use to build your tRPC API. You should import these a lot in the
68
+ * "/src/server/api/routers" directory.
69
+ */
70
+
71
+ /**
72
+ * This is how you create new routers and sub-routers in your tRPC API.
73
+ *
74
+ * @see https://trpc.io/docs/router
75
+ */
76
+ export const createTRPCRouter = t.router
77
+
78
+ /**
79
+ * Middleware for timing procedure execution and adding an artificial delay in development.
80
+ *
81
+ * You can remove this if you don't like it, but it can help catch unwanted waterfalls by simulating
82
+ * network latency that would occur in production but not in local development.
83
+ */
84
+ const timingMiddleware = t.middleware(async ({ next, path }) => {
85
+ const start = Date.now()
86
+
87
+ if (t._config.isDev) {
88
+ // artificial delay in dev
89
+ const waitMs = Math.floor(Math.random() * 400) + 100
90
+ await new Promise((resolve) => setTimeout(resolve, waitMs))
91
+ }
92
+
93
+ const result = await next()
94
+
95
+ const end = Date.now()
96
+ console.log(`[TRPC] ${path} took ${end - start}ms to execute`)
97
+
98
+ return result
99
+ })
100
+
101
+ /**
102
+ * Public (unauthenticated) procedure
103
+ *
104
+ * This is the base piece you use to build new queries and mutations on your tRPC API. It does not
105
+ * guarantee that a user querying is authorized, but you can still access user session data if they
106
+ * are logged in.
107
+ */
108
+ export const publicProcedure = t.procedure.use(timingMiddleware)
109
+
110
+ /**
111
+ * Protected (authenticated) procedure
112
+ *
113
+ * If you want a query or mutation to ONLY be accessible to logged in users, use this. It verifies
114
+ * the session is valid and guarantees `ctx.session.user` is not null.
115
+ *
116
+ * @see https://trpc.io/docs/procedures
117
+ */
118
+ export const protectedProcedure = t.procedure
119
+ .use(timingMiddleware)
120
+ .use(({ ctx, next }) => {
121
+ if (!ctx.session?.user) {
122
+ throw new TRPCError({ code: "UNAUTHORIZED" })
123
+ }
124
+ return next({
125
+ ctx: {
126
+ // infers the `session` as non-nullable
127
+ session: { ...ctx.session, user: ctx.session.user },
128
+ },
129
+ })
130
+ })
@@ -0,0 +1,134 @@
1
+ /**
2
+ * YOU PROBABLY DON'T NEED TO EDIT THIS FILE, UNLESS:
3
+ * 1. You want to modify request context (see Part 1).
4
+ * 2. You want to create a new middleware or type of procedure (see Part 3).
5
+ *
6
+ * TL;DR - This is where all the tRPC server stuff is created and plugged in.
7
+ * The pieces you will need to use are documented accordingly near the end.
8
+ */
9
+ import { initTRPC, TRPCError } from "@trpc/server"
10
+ import superjson from "superjson"
11
+ import { z, ZodError } from "zod"
12
+
13
+ import { auth } from "@/server/auth"
14
+ import { db } from "@/server/db"
15
+
16
+ /**
17
+ * 1. CONTEXT
18
+ *
19
+ * This section defines the "contexts" that are available in the backend API.
20
+ *
21
+ * These allow you to access things when processing a request, like the database, the session, etc.
22
+ *
23
+ * This helper generates the "internals" for a tRPC context. The API handler and RSC clients each
24
+ * wrap this and provides the required context.
25
+ *
26
+ * @see https://trpc.io/docs/server/context
27
+ */
28
+ export async function createTRPCContext(opts: { headers: Headers }) {
29
+ const session = await auth.api.getSession({
30
+ headers: opts.headers,
31
+ })
32
+
33
+ return {
34
+ db,
35
+ session,
36
+ ...opts,
37
+ }
38
+ }
39
+
40
+ /**
41
+ * 2. INITIALIZATION
42
+ *
43
+ * This is where the tRPC API is initialized, connecting the context and transformer. We also parse
44
+ * ZodErrors so that you get typesafety on the frontend if your procedure fails due to validation
45
+ * errors on the backend.
46
+ */
47
+ const t = initTRPC.context<typeof createTRPCContext>().create({
48
+ transformer: superjson,
49
+ errorFormatter({ shape, error }) {
50
+ return {
51
+ ...shape,
52
+ data: {
53
+ ...shape.data,
54
+ zodError:
55
+ error.cause instanceof ZodError ? z.treeifyError(error.cause) : null,
56
+ },
57
+ }
58
+ },
59
+ })
60
+
61
+ /**
62
+ * Create a server-side caller.
63
+ *
64
+ * @see https://trpc.io/docs/server/server-side-calls
65
+ */
66
+ export const createCallerFactory = t.createCallerFactory
67
+
68
+ /**
69
+ * 3. ROUTER & PROCEDURE (THE IMPORTANT BIT)
70
+ *
71
+ * These are the pieces you use to build your tRPC API. You should import these a lot in the
72
+ * "/src/server/api/routers" directory.
73
+ */
74
+
75
+ /**
76
+ * This is how you create new routers and sub-routers in your tRPC API.
77
+ *
78
+ * @see https://trpc.io/docs/router
79
+ */
80
+ export const createTRPCRouter = t.router
81
+
82
+ /**
83
+ * Middleware for timing procedure execution and adding an artificial delay in development.
84
+ *
85
+ * You can remove this if you don't like it, but it can help catch unwanted waterfalls by simulating
86
+ * network latency that would occur in production but not in local development.
87
+ */
88
+ const timingMiddleware = t.middleware(async ({ next, path }) => {
89
+ const start = Date.now()
90
+
91
+ if (t._config.isDev) {
92
+ // artificial delay in dev
93
+ const waitMs = Math.floor(Math.random() * 400) + 100
94
+ await new Promise((resolve) => setTimeout(resolve, waitMs))
95
+ }
96
+
97
+ const result = await next()
98
+
99
+ const end = Date.now()
100
+ console.log(`[TRPC] ${path} took ${end - start}ms to execute`)
101
+
102
+ return result
103
+ })
104
+
105
+ /**
106
+ * Public (unauthenticated) procedure
107
+ *
108
+ * This is the base piece you use to build new queries and mutations on your tRPC API. It does not
109
+ * guarantee that a user querying is authorized, but you can still access user session data if they
110
+ * are logged in.
111
+ */
112
+ export const publicProcedure = t.procedure.use(timingMiddleware)
113
+
114
+ /**
115
+ * Protected (authenticated) procedure
116
+ *
117
+ * If you want a query or mutation to ONLY be accessible to logged in users, use this. It verifies
118
+ * the session is valid and guarantees `ctx.session.user` is not null.
119
+ *
120
+ * @see https://trpc.io/docs/procedures
121
+ */
122
+ export const protectedProcedure = t.procedure
123
+ .use(timingMiddleware)
124
+ .use(({ ctx, next }) => {
125
+ if (!ctx.session?.user) {
126
+ throw new TRPCError({ code: "UNAUTHORIZED" })
127
+ }
128
+ return next({
129
+ ctx: {
130
+ // infers the `session` as non-nullable
131
+ session: { ...ctx.session, user: ctx.session.user },
132
+ },
133
+ })
134
+ })
@@ -0,0 +1,132 @@
1
+ /**
2
+ * YOU PROBABLY DON'T NEED TO EDIT THIS FILE, UNLESS:
3
+ * 1. You want to modify request context (see Part 1).
4
+ * 2. You want to create a new middleware or type of procedure (see Part 3).
5
+ *
6
+ * TL;DR - This is where all the tRPC server stuff is created and plugged in.
7
+ * The pieces you will need to use are documented accordingly near the end.
8
+ */
9
+ import { initTRPC, TRPCError } from "@trpc/server"
10
+ import superjson from "superjson"
11
+ import { z, ZodError } from "zod"
12
+
13
+ import { auth } from "@/server/auth"
14
+
15
+ /**
16
+ * 1. CONTEXT
17
+ *
18
+ * This section defines the "contexts" that are available in the backend API.
19
+ *
20
+ * These allow you to access things when processing a request, like the database, the session, etc.
21
+ *
22
+ * This helper generates the "internals" for a tRPC context. The API handler and RSC clients each
23
+ * wrap this and provides the required context.
24
+ *
25
+ * @see https://trpc.io/docs/server/context
26
+ */
27
+ export async function createTRPCContext(opts: { headers: Headers }) {
28
+ const session = await auth.api.getSession({
29
+ headers: opts.headers,
30
+ })
31
+
32
+ return {
33
+ session,
34
+ ...opts,
35
+ }
36
+ }
37
+
38
+ /**
39
+ * 2. INITIALIZATION
40
+ *
41
+ * This is where the tRPC API is initialized, connecting the context and transformer. We also parse
42
+ * ZodErrors so that you get typesafety on the frontend if your procedure fails due to validation
43
+ * errors on the backend.
44
+ */
45
+ const t = initTRPC.context<typeof createTRPCContext>().create({
46
+ transformer: superjson,
47
+ errorFormatter({ shape, error }) {
48
+ return {
49
+ ...shape,
50
+ data: {
51
+ ...shape.data,
52
+ zodError:
53
+ error.cause instanceof ZodError ? z.treeifyError(error.cause) : null,
54
+ },
55
+ }
56
+ },
57
+ })
58
+
59
+ /**
60
+ * Create a server-side caller.
61
+ *
62
+ * @see https://trpc.io/docs/server/server-side-calls
63
+ */
64
+ export const createCallerFactory = t.createCallerFactory
65
+
66
+ /**
67
+ * 3. ROUTER & PROCEDURE (THE IMPORTANT BIT)
68
+ *
69
+ * These are the pieces you use to build your tRPC API. You should import these a lot in the
70
+ * "/src/server/api/routers" directory.
71
+ */
72
+
73
+ /**
74
+ * This is how you create new routers and sub-routers in your tRPC API.
75
+ *
76
+ * @see https://trpc.io/docs/router
77
+ */
78
+ export const createTRPCRouter = t.router
79
+
80
+ /**
81
+ * Middleware for timing procedure execution and adding an artificial delay in development.
82
+ *
83
+ * You can remove this if you don't like it, but it can help catch unwanted waterfalls by simulating
84
+ * network latency that would occur in production but not in local development.
85
+ */
86
+ const timingMiddleware = t.middleware(async ({ next, path }) => {
87
+ const start = Date.now()
88
+
89
+ if (t._config.isDev) {
90
+ // artificial delay in dev
91
+ const waitMs = Math.floor(Math.random() * 400) + 100
92
+ await new Promise((resolve) => setTimeout(resolve, waitMs))
93
+ }
94
+
95
+ const result = await next()
96
+
97
+ const end = Date.now()
98
+ console.log(`[TRPC] ${path} took ${end - start}ms to execute`)
99
+
100
+ return result
101
+ })
102
+
103
+ /**
104
+ * Public (unauthenticated) procedure
105
+ *
106
+ * This is the base piece you use to build new queries and mutations on your tRPC API. It does not
107
+ * guarantee that a user querying is authorized, but you can still access user session data if they
108
+ * are logged in.
109
+ */
110
+ export const publicProcedure = t.procedure.use(timingMiddleware)
111
+
112
+ /**
113
+ * Protected (authenticated) procedure
114
+ *
115
+ * If you want a query or mutation to ONLY be accessible to logged in users, use this. It verifies
116
+ * the session is valid and guarantees `ctx.session.user` is not null.
117
+ *
118
+ * @see https://trpc.io/docs/procedures
119
+ */
120
+ export const protectedProcedure = t.procedure
121
+ .use(timingMiddleware)
122
+ .use(({ ctx, next }) => {
123
+ if (!ctx.session?.user) {
124
+ throw new TRPCError({ code: "UNAUTHORIZED" })
125
+ }
126
+ return next({
127
+ ctx: {
128
+ // infers the `session` as non-nullable
129
+ session: { ...ctx.session, user: ctx.session.user },
130
+ },
131
+ })
132
+ })
@@ -0,0 +1,106 @@
1
+ /**
2
+ * YOU PROBABLY DON'T NEED TO EDIT THIS FILE, UNLESS:
3
+ * 1. You want to modify request context (see Part 1).
4
+ * 2. You want to create a new middleware or type of procedure (see Part 3).
5
+ *
6
+ * TL;DR - This is where all the tRPC server stuff is created and plugged in.
7
+ * The pieces you will need to use are documented accordingly near the end.
8
+ */
9
+ import { initTRPC } from "@trpc/server"
10
+ import superjson from "superjson"
11
+ import { z, ZodError } from "zod"
12
+
13
+ import { db } from "@/server/db"
14
+
15
+ /**
16
+ * 1. CONTEXT
17
+ *
18
+ * This section defines the "contexts" that are available in the backend API.
19
+ *
20
+ * These allow you to access things when processing a request, like the database, the session, etc.
21
+ *
22
+ * This helper generates the "internals" for a tRPC context. The API handler and RSC clients each
23
+ * wrap this and provides the required context.
24
+ *
25
+ * @see https://trpc.io/docs/server/context
26
+ */
27
+ export async function createTRPCContext(opts: { headers: Headers }) {
28
+ return {
29
+ db,
30
+ ...opts,
31
+ }
32
+ }
33
+
34
+ /**
35
+ * 2. INITIALIZATION
36
+ *
37
+ * This is where the tRPC API is initialized, connecting the context and transformer. We also parse
38
+ * ZodErrors so that you get typesafety on the frontend if your procedure fails due to validation
39
+ * errors on the backend.
40
+ */
41
+ const t = initTRPC.context<typeof createTRPCContext>().create({
42
+ transformer: superjson,
43
+ errorFormatter({ shape, error }) {
44
+ return {
45
+ ...shape,
46
+ data: {
47
+ ...shape.data,
48
+ zodError:
49
+ error.cause instanceof ZodError ? z.treeifyError(error.cause) : null,
50
+ },
51
+ }
52
+ },
53
+ })
54
+
55
+ /**
56
+ * Create a server-side caller.
57
+ *
58
+ * @see https://trpc.io/docs/server/server-side-calls
59
+ */
60
+ export const createCallerFactory = t.createCallerFactory
61
+
62
+ /**
63
+ * 3. ROUTER & PROCEDURE (THE IMPORTANT BIT)
64
+ *
65
+ * These are the pieces you use to build your tRPC API. You should import these a lot in the
66
+ * "/src/server/api/routers" directory.
67
+ */
68
+
69
+ /**
70
+ * This is how you create new routers and sub-routers in your tRPC API.
71
+ *
72
+ * @see https://trpc.io/docs/router
73
+ */
74
+ export const createTRPCRouter = t.router
75
+
76
+ /**
77
+ * Middleware for timing procedure execution and adding an artificial delay in development.
78
+ *
79
+ * You can remove this if you don't like it, but it can help catch unwanted waterfalls by simulating
80
+ * network latency that would occur in production but not in local development.
81
+ */
82
+ const timingMiddleware = t.middleware(async ({ next, path }) => {
83
+ const start = Date.now()
84
+
85
+ if (t._config.isDev) {
86
+ // artificial delay in dev
87
+ const waitMs = Math.floor(Math.random() * 400) + 100
88
+ await new Promise((resolve) => setTimeout(resolve, waitMs))
89
+ }
90
+
91
+ const result = await next()
92
+
93
+ const end = Date.now()
94
+ console.log(`[TRPC] ${path} took ${end - start}ms to execute`)
95
+
96
+ return result
97
+ })
98
+
99
+ /**
100
+ * Public (unauthenticated) procedure
101
+ *
102
+ * This is the base piece you use to build new queries and mutations on your tRPC API. It does not
103
+ * guarantee that a user querying is authorized, but you can still access user session data if they
104
+ * are logged in.
105
+ */
106
+ export const publicProcedure = t.procedure.use(timingMiddleware)
@@ -0,0 +1,23 @@
1
+ import { createCallerFactory, createTRPCRouter } from "@/server/api/init"
2
+ import { postRouter } from "@/server/api/routers/post"
3
+
4
+ /**
5
+ * This is the primary router for your server.
6
+ *
7
+ * All routers added in /api/routers should be manually added here.
8
+ */
9
+ export const appRouter = createTRPCRouter({
10
+ post: postRouter,
11
+ })
12
+
13
+ // Export type definition of API
14
+ export type AppRouter = typeof appRouter
15
+
16
+ /**
17
+ * Create a server-side caller for the tRPC API.
18
+ * @example
19
+ * const trpc = createCaller(createContext);
20
+ * const res = await trpc.post.all();
21
+ * ^? Post[]
22
+ */
23
+ export const createCaller = createCallerFactory(appRouter)
@@ -0,0 +1,46 @@
1
+ import z from "zod"
2
+
3
+ import { createTRPCRouter, publicProcedure } from "@/server/api/init"
4
+
5
+ // Mocked DB
6
+ interface Post {
7
+ id: number
8
+ name: string
9
+ }
10
+ const posts: Post[] = [
11
+ {
12
+ id: 1,
13
+ name: "Hello World",
14
+ },
15
+ ]
16
+
17
+ export const postRouter = createTRPCRouter({
18
+ greeting: publicProcedure
19
+ .input(
20
+ z.object({
21
+ text: z.string(),
22
+ })
23
+ )
24
+ .query(({ input }) => {
25
+ return `Hello ${input.text}`
26
+ }),
27
+
28
+ create: publicProcedure
29
+ .input(
30
+ z.object({
31
+ name: z.string().min(1),
32
+ })
33
+ )
34
+ .mutation(async ({ input }) => {
35
+ const post: Post = {
36
+ id: posts.length + 1,
37
+ name: input.name,
38
+ }
39
+ posts.push(post)
40
+ return post
41
+ }),
42
+
43
+ getLatest: publicProcedure.query(async () => {
44
+ return posts.at(-1) || null
45
+ }),
46
+ })
@@ -0,0 +1,44 @@
1
+ import z from "zod"
2
+
3
+ import {
4
+ createTRPCRouter,
5
+ protectedProcedure,
6
+ publicProcedure,
7
+ } from "@/server/api/init"
8
+ import { post } from "@/server/db/schema"
9
+
10
+ export const postRouter = createTRPCRouter({
11
+ greeting: publicProcedure
12
+ .input(
13
+ z.object({
14
+ text: z.string(),
15
+ })
16
+ )
17
+ .query(({ input }) => {
18
+ return `Hello ${input.text}`
19
+ }),
20
+
21
+ create: publicProcedure
22
+ .input(
23
+ z.object({
24
+ name: z.string().min(1),
25
+ })
26
+ )
27
+ .mutation(async ({ ctx, input }) => {
28
+ await ctx.db.insert(post).values({
29
+ name: input.name,
30
+ })
31
+ }),
32
+
33
+ getLatest: publicProcedure.query(async ({ ctx }) => {
34
+ const post = await ctx.db.query.post.findFirst({
35
+ orderBy: (post, { desc }) => [desc(post.createdAt)],
36
+ })
37
+
38
+ return post ?? null
39
+ }),
40
+
41
+ getSecretMessage: protectedProcedure.query(() => {
42
+ return "you can now see this secret message!"
43
+ }),
44
+ })
@@ -0,0 +1,43 @@
1
+ import { z } from "zod"
2
+
3
+ import {
4
+ createTRPCRouter,
5
+ protectedProcedure,
6
+ publicProcedure,
7
+ } from "@/server/api/init"
8
+
9
+ let post = {
10
+ id: 1,
11
+ name: "Hello World",
12
+ }
13
+
14
+ export const postRouter = createTRPCRouter({
15
+ greeting: publicProcedure
16
+ .input(
17
+ z.object({
18
+ text: z.string(),
19
+ })
20
+ )
21
+ .query(({ input }) => {
22
+ return `Hello ${input.text}`
23
+ }),
24
+
25
+ create: publicProcedure
26
+ .input(
27
+ z.object({
28
+ name: z.string().min(1),
29
+ })
30
+ )
31
+ .mutation(async ({ input }) => {
32
+ post = { id: post.id + 1, name: input.name }
33
+ return post
34
+ }),
35
+
36
+ getLatest: publicProcedure.query(async () => {
37
+ return post
38
+ }),
39
+
40
+ getSecretMessage: protectedProcedure.query(() => {
41
+ return "you can now see this secret message!"
42
+ }),
43
+ })
@@ -0,0 +1,36 @@
1
+ import z from "zod"
2
+
3
+ import { createTRPCRouter, publicProcedure } from "@/server/api/init"
4
+ import { post } from "@/server/db/schema"
5
+
6
+ export const postRouter = createTRPCRouter({
7
+ greeting: publicProcedure
8
+ .input(
9
+ z.object({
10
+ text: z.string(),
11
+ })
12
+ )
13
+ .query(({ input }) => {
14
+ return `Hello ${input.text}`
15
+ }),
16
+
17
+ create: publicProcedure
18
+ .input(
19
+ z.object({
20
+ name: z.string().min(1),
21
+ })
22
+ )
23
+ .mutation(async ({ ctx, input }) => {
24
+ await ctx.db.insert(post).values({
25
+ name: input.name,
26
+ })
27
+ }),
28
+
29
+ getLatest: publicProcedure.query(async ({ ctx }) => {
30
+ const post = await ctx.db.query.post.findFirst({
31
+ orderBy: (post, { desc }) => [desc(post.createdAt)],
32
+ })
33
+
34
+ return post ?? null
35
+ }),
36
+ })
@@ -6,6 +6,7 @@ import { env } from "@/env"
6
6
 
7
7
  export const auth = betterAuth({
8
8
  database: new Database("./db.sqlite"),
9
+ baseURL: env.NEXT_PUBLIC_BETTER_AUTH_URL,
9
10
  socialProviders: {
10
11
  discord: {
11
12
  clientId: env.DISCORD_CLIENT_ID,