Files
Cloud-Home/.env.example
RhenCloud 99ffc73e76 refactor: 将项目迁移到 Nuxt 4
该项目从 Vue 3 迁移到了 Nuxt 4,对代码结构和配置进行了相应调整。
- 修改了环境变量前缀,将 `VITE_` 替换为 `NUXT_PUBLIC_`,以便与 Nuxt 的环境变量配置兼容。
- 添加了新的环境变量 `WAKATIME_API_KEY` 和可选变量 `WAKATIME_API_URL` 用于配置 Wakatime API。
2025-12-12 23:19:18 +08:00

32 lines
690 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Github Token
NUXT_PUBLIC_GITHUB_TOKEN=your-github-token
# UMAMI API KEY
NUXT_PUBLIC_UMAMI_API_KEY=your-umami-api-key
# Wakatime API Key
WAKATIME_API_KEY=your-wakatime-api-key
# Wakatime API Base可选
WAKATIME_API_URL=https://wakatime.com/api/v1
# SMTP 服务器地址
SMTP_HOST=smtp.example.com
# SMTP 端口(不填写默认465
SMTP_PORT=465
# SMTP 用户名一般与SENDER_EMAIL相同
SMTP_USER=your-email@example.com
# SMTP 密码
SMTP_PASS=your-email-password
# 收件邮箱地址
ADMIN_EMAIL=admin@example.com
# 发件邮箱地址一般与SMTP_USER相同
SENDER_EMAIL=sender@example.com
# 是否启用SSL
SMTP_SECURE=true