Add default env
This commit is contained in:
parent
17fec0a2b1
commit
0c67713063
28
default.env
Normal file
28
default.env
Normal file
@ -0,0 +1,28 @@
|
||||
# SMTP configuration for sending emails
|
||||
SMTP_HOST=us2.smtp.yourtld.com # SMTP server host
|
||||
SMTP_PORT=587 # SMTP server port
|
||||
EMAIL_USER=user@yourtld.com # Email address used for SMTP authentication
|
||||
EMAIL_PASS="ComplexPass" # Password for the SMTP user (Use a complex, secure password)
|
||||
RECEIVER_EMAIL=youremail@yourtld.com # Default receiver email for outgoing messages
|
||||
|
||||
# CAPTCHA key for form verification (replace with your real CAPTCHA secret key)
|
||||
CAPTCHA_SECRET_KEY="KEYHERE"
|
||||
|
||||
# URL configuration
|
||||
# NO TRAILING SLASH - Base host URL for the website
|
||||
HOST_URL="https://yourtld.com"
|
||||
# TRAILING SLASH - Blog URL, should have a trailing slash at the end
|
||||
BLOG_URL="https://blog.yourtld.com/"
|
||||
# Domain name, without URL structure
|
||||
DOMAIN_NAME="yourtld.com"
|
||||
|
||||
# Website branding
|
||||
SITE_NAME="what ever you want here" # Title used in the website's navbar
|
||||
OWNER_NAME="Your Name" # Name of the website's owner (you)
|
||||
|
||||
# Front page content
|
||||
FRONT_PAGE_TITLE="Hello, my name is Your Name" # Main heading on the homepage
|
||||
FRONT_PAGE_LEAD="Where Technology Meets Creativity: Insights from a Linux Enthusiast" # Short lead text on the homepage
|
||||
|
||||
# Footer content
|
||||
FOOTER_TAGLINE="Never Stop Learning" # Tagline for the footer section of the website
|
Loading…
Reference in New Issue
Block a user