diff options
author | 2025-04-26 15:31:33 +0530 | |
---|---|---|
committer | 2025-04-26 15:31:33 +0530 | |
commit | 8c9677ffc5aef95964b42c03690eb5ea1b912b13 (patch) | |
tree | 8d1941b0e591e601288387c464db098e66e9b365 /.env.example | |
download | realtimeloc-8c9677ffc5aef95964b42c03690eb5ea1b912b13.tar.gz realtimeloc-8c9677ffc5aef95964b42c03690eb5ea1b912b13.tar.bz2 realtimeloc-8c9677ffc5aef95964b42c03690eb5ea1b912b13.zip |
testing location tracker
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 |