mirror of
https://github.com/armbian/imager.git
synced 2026-01-06 12:31:28 -08:00
Add .env.example exception to gitignore
This commit is contained in:
28
.env.example
Normal file
28
.env.example
Normal file
@@ -0,0 +1,28 @@
|
||||
# ==========================================
|
||||
# Armbian Imager - Environment Variables
|
||||
# ==========================================
|
||||
# Copy this file to .env for local development
|
||||
# Variables prefixed with VITE_ are exposed to the frontend
|
||||
#
|
||||
# .env - Default development values
|
||||
# .env.local - Local overrides (gitignored)
|
||||
# .env.production - Production build values
|
||||
|
||||
# App Info
|
||||
VITE_APP_NAME=Armbian Imager
|
||||
# Note: Version is managed in tauri.conf.json and accessible via @tauri-apps/api/app
|
||||
|
||||
# Armbian URLs (for reference - actual API calls are in Rust backend)
|
||||
VITE_ARMBIAN_WEBSITE=https://www.armbian.com
|
||||
VITE_ARMBIAN_DOCS=https://docs.armbian.com
|
||||
VITE_ARMBIAN_FORUM=https://forum.armbian.com
|
||||
VITE_ARMBIAN_GITHUB=https://github.com/armbian
|
||||
|
||||
# Project URLs
|
||||
VITE_PROJECT_REPO=https://github.com/armbian/armbian-imager
|
||||
VITE_PROJECT_ISSUES=https://github.com/armbian/armbian-imager/issues
|
||||
|
||||
# Development Settings
|
||||
# Set to true to enable dev tools and debug features
|
||||
VITE_DEV_TOOLS=true
|
||||
VITE_DEBUG_MODE=true
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -20,6 +20,7 @@ dist-ssr
|
||||
*.local
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
|
||||
Reference in New Issue
Block a user