- Added 'onDelete' and 'onNotes' support to TaskItem. - Implemented hover actions (Delete and Notes icons) for tasks. - Added Notes Modal for editing task markdown content. - Simplified navigation animation to remove blank flash (single-phase slide-in). - Fixed syntax error in updateTask function. - Updated styles for modal and task actions.
27 lines
849 B
Plaintext
27 lines
849 B
Plaintext
# Database Configuration
|
|
DATABASE_URL=postgresql://root:WKE7xeZohxdZit7eObjG@192.168.178.91:2665/My-Weekly-ToDo-List?schema=public
|
|
|
|
# Email Service Configuration
|
|
SMTP_HOST=w00ff033.kasserver.com
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=mail@carrylight.de
|
|
SMTP_PASSWORD=QijU8e2A8p3FE8WS8esR
|
|
SMTP_SECURE=true
|
|
|
|
# NextAuth Configuration
|
|
NEXTAUTH_SECRET=Ca7EoJzZSMJO2CkqwdWd
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# Google OAuth (Replace with your credentials)
|
|
GOOGLE_CLIENT_ID=196368743757-1fn17q2ecg5n8rej4tu96khltno173he.apps.googleusercontent.com
|
|
GOOGLE_CLIENT_SECRET=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
|
|
GOOGLE_REDIRECT_URI=http://localhost:3000/api/calendar/google/oauth
|
|
|
|
|
|
# Apple Sign In (Replace with your credentials when ready)
|
|
# APPLE_ID=your-apple-id
|
|
# APPLE_SECRET=your-apple-secret
|
|
|
|
# Base URL for the application
|
|
NEXT_PUBLIC_BASE_URL=http://localhost:3001
|