Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ BETTER_AUTH_SECRET="randomly-generated-str"
BETTER_AUTH_URL=http://localhost:3000
EMAIL_USER="sample-user@gmail.com"
EMAIL_PASS="google-app-pwd"
EMAIL_HOST=smtp.gmail.com

UPLOAD_STORAGE_PATH="full-path-to-image-store"
EMAIL_FROM=smtp.gmail.com
EMAIL_HOST="sample-user@gmail.com"
UPLOAD_STORAGE_PATH="full-path-to-image-store"
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug Report
about: Create a report to help us improve
title: 'Bug: '
labels: 'bug'
assignees: ''
---

### Context / Problem

[Describe the bug. What is the expected behavior, and what is actually happening? Provide context.]

### Proposed Solution

[If you have a solution in mind, describe it here.]

### Implementation Details / Reproduction Steps

[Provide steps to reproduce the bug, or implementation details if a fix is known.]

1.
2.
3.

### Acceptance Criteria

- [ ] [Criteria 1 - E.g., The bug no longer occurs when doing X]
- [ ] [Criteria 2]
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Enhancement / DX Improvement
about: Suggest an idea for this project
title: 'DX/Feature: '
labels: 'enhancement'
assignees: ''
---

### Context / Problem

[Provide context. Why is this an issue specifically for local development or in the context of an EPICS project? What problem does this solve?]

### Proposed Solution

[Provide detailed steps on how to fix or implement it.]

### Implementation Details

[If known, provide code snippets or configuration examples showing exactly what needs to change.]

### Acceptance Criteria

- [ ] [Criteria 1]
- [ ] [Criteria 2]
66 changes: 0 additions & 66 deletions prisma/migrations/20260206183958/migration.sql

This file was deleted.

2 changes: 1 addition & 1 deletion server/utils/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const auth = betterAuth({
emailOTP({
async sendVerificationOTP({ email, otp, type }) {
await transporter.sendMail({
from: process.env.EMAIL_USER,
from: process.env.EMAIL_FROM,
to: email,
subject: 'OTP for nuxt-template',
html: `Your OTP is: ${otp}`,
Expand Down
Loading