From 8c9677ffc5aef95964b42c03690eb5ea1b912b13 Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Sat, 26 Apr 2025 15:31:33 +0530 Subject: testing location tracker --- .env.example | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .env.example (limited to '.env.example') diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..23a1f65 --- /dev/null +++ b/.env.example @@ -0,0 +1,28 @@ +# Application Settings +NEXT_PUBLIC_SITE_URL=http://localhost:3000 +PORT=3000 + +# Socket.IO +SOCKET_PORT=3001 +NEXT_PUBLIC_SOCKET_URL=http://localhost:3001 + +# Email Configuration +# SMTP settings for sending emails +SMTP_HOST=smtp.example.com +SMTP_PORT=587 +SMTP_USER=your-email@example.com +SMTP_PASSWORD=your-password-or-app-password +EMAIL_FROM="Location Tracker " + +# For Gmail: +# SMTP_HOST=smtp.gmail.com +# SMTP_PORT=587 +# SMTP_USER=your-gmail@gmail.com +# SMTP_PASSWORD=your-app-password +# Note: For Gmail, you need to use an App Password: https://support.google.com/accounts/answer/185833 + +# For Outlook/Hotmail: +# SMTP_HOST=smtp.office365.com +# SMTP_PORT=587 +# SMTP_USER=your-outlook@outlook.com +# SMTP_PASSWORD=your-password -- cgit v1.2.3-59-g8ed1b