diff options
Diffstat (limited to '.env.example')
-rw-r--r-- | .env.example | 28 |
1 files changed, 28 insertions, 0 deletions
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_PASSWORD=your-password-or-app-password +EMAIL_FROM="Location Tracker <[email protected]>" + +# For Gmail: +# SMTP_HOST=smtp.gmail.com +# SMTP_PORT=587 +# 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_PASSWORD=your-password |