Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #14 from isoppp/feature/move-files
Browse files Browse the repository at this point in the history
move files
  • Loading branch information
isoppp authored Sep 23, 2024
2 parents f1f7576 + f0a0e9d commit 31f0bce
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/.server/trpc/routes/auth/signInWithEmailUsecase.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { commitVerificationSessionWithValue } from '@/.server/cookie-session/verification-session'
import type { Context } from '@/.server/trpc/trpc'
import { generateRandomURLString } from '@/.server/utils/auth.server'
import { generateRandomURLString } from '@/.server/utils/auth'
import { sendEmail } from '@/.server/utils/email'
import SignInVerification from '@/components/emails/SignInVerification'
import { prisma } from '@/lib/prisma'
Expand Down
2 changes: 1 addition & 1 deletion app/.server/trpc/routes/auth/signUpWithEmailUsecase.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { commitVerificationSessionWithValue } from '@/.server/cookie-session/verification-session'
import type { Context } from '@/.server/trpc/trpc'
import { generateRandomURLString } from '@/.server/utils/auth.server'
import { generateRandomURLString } from '@/.server/utils/auth'
import { sendEmail } from '@/.server/utils/email'
import SignUpVerification from '@/components/emails/SignUpVerification'
import { prisma } from '@/lib/prisma'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/components/emails/SignInVerification.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { generateRandomURLString } from '@/.server/utils/auth.server'
import { generateRandomURLString } from '@/.server/utils/auth'
import {
Body,
Button,
Expand Down
2 changes: 1 addition & 1 deletion app/components/emails/SignUpVerification.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { generateRandomURLString } from '@/.server/utils/auth.server'
import { generateRandomURLString } from '@/.server/utils/auth'
import {
Body,
Button,
Expand Down
6 changes: 3 additions & 3 deletions server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/

import crypto from 'node:crypto'
import { appLogger } from '@/.server/utils/logger'
import { createRequestHandler } from '@remix-run/express'
import type { ServerBuild } from '@remix-run/node'
import chalk from 'chalk'
Expand All @@ -12,9 +13,8 @@ import express from 'express'
import rateLimit from 'express-rate-limit'
import getPort, { portNumbers } from 'get-port'
import helmet, { type HelmetOptions } from 'helmet'
import './otel'
import './logger'
import { appLogger } from './logger'

import '@/.server/utils/open-telemetry'

const IS_LOCAL = process.env.APP_ENV === 'local'
const ALLOW_INDEXING = false
Expand Down

0 comments on commit 31f0bce

Please sign in to comment.