generated from kvnxiao/tauri-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.env.example
More file actions
59 lines (46 loc) · 1.97 KB
/
.env.example
File metadata and controls
59 lines (46 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Tailwind CSS v4 LightningCSS configuration
LIGHTNINGCSS_PLATFORM=linux
LIGHTNINGCSS_ARCH=x64
# OAuth Configuration for Social Networks Export
# ============================================
# YouTube OAuth (Google Developer Console)
# Create OAuth 2.0 credentials at: https://console.developers.google.com/
NEXT_PUBLIC_YOUTUBE_CLIENT_ID=your_google_oauth_client_id
NEXT_PUBLIC_YOUTUBE_CLIENT_SECRET=your_google_oauth_client_secret
# TikTok OAuth (TikTok for Developers)
# Register at: https://developers.tiktok.com/
NEXT_PUBLIC_TIKTOK_CLIENT_ID=your_tiktok_client_key
NEXT_PUBLIC_TIKTOK_CLIENT_SECRET=your_tiktok_client_secret
# Vimeo OAuth (Vimeo Developer Console)
# Create app at: https://developer.vimeo.com/
NEXT_PUBLIC_VIMEO_CLIENT_ID=your_vimeo_client_id
NEXT_PUBLIC_VIMEO_CLIENT_SECRET=your_vimeo_client_secret
NEXT_PUBLIC_VIMEO_ACCESS_TOKEN=your_vimeo_personal_access_token
# Telegram Bot API (BotFather)
# Create bot at: https://t.me/BotFather
NEXT_PUBLIC_TELEGRAM_BOT_TOKEN=your_telegram_bot_token
NEXT_PUBLIC_TELEGRAM_CHAT_ID=your_telegram_chat_id_or_channel_id
NEXT_PUBLIC_TELEGRAM_WEBHOOK_SECRET=your_telegram_webhook_secret
# OAuth Redirect URI (must match in OAuth apps)
NEXT_PUBLIC_OAUTH_REDIRECT_URI=http://localhost:3000/oauth/callback
# Optional: Production URLs
# NEXT_PUBLIC_OAUTH_REDIRECT_URI=https://yourdomain.com/oauth/callback
# Optional: API Environment (development/production)
NEXT_PUBLIC_API_ENV=development
# AI Services
# ===========
# OpenAI API Key (for AI Assistant)
OPENAI_API_KEY=your_openai_api_key_here
# Anthropic API Key (for Claude AI Assistant)
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Code Coverage
# =============
# Codecov Token for coverage reporting
# Get your token at: https://app.codecov.io/gh/your-org/your-repo/settings
CODECOV_TOKEN=your_codecov_token_here
# Development Tools
# =================
# Tauri Analytics (optional)
TAURI_ANALYTICS_API_KEY=your_tauri_analytics_key
# Vite log level (info, warn, error, silent)
VITE_LOG_LEVEL=info