feat(config): add .env.example template and update .gitignore
This commit is contained in:
parent
2f29640ed3
commit
c4ff917d75
|
|
@ -0,0 +1,37 @@
|
||||||
|
# Entropia Tools Suite - Environment Configuration
|
||||||
|
# Copy this file to .env and fill in your actual values
|
||||||
|
|
||||||
|
# --- SSH Key for Gitea ---
|
||||||
|
# Path to your SSH private key for Gitea authentication
|
||||||
|
SSH_KEY_PATH=C:\Users\<USERNAME>\.ssh\id_ed25519
|
||||||
|
|
||||||
|
# Your SSH public key (for reference)
|
||||||
|
SSH_PUB_KEY=ssh-ed25519 <YOUR_PUBLIC_KEY> <your_email@example.com>
|
||||||
|
|
||||||
|
# Gitea SSH connection settings
|
||||||
|
GITEA_SSH_HOST=your.gitea.host
|
||||||
|
GITEA_SSH_PORT=2222
|
||||||
|
|
||||||
|
# --- Project Paths ---
|
||||||
|
# Path to this project directory
|
||||||
|
PROJECT_PATH=C:\Users\<USERNAME>\Documents\AA2-Repositories\Lemontropia-Suite
|
||||||
|
|
||||||
|
# Path to Entropia Universe game logs directory
|
||||||
|
ENTROPIA_LOGS=C:\Users\<USERNAME>\Documents\Entropia Universe
|
||||||
|
|
||||||
|
# --- Obsidian Integration ---
|
||||||
|
# Your Obsidian API key (from Obsidian Local REST API plugin settings)
|
||||||
|
OBSIDIAN_API_KEY=your_obsidian_api_key_here
|
||||||
|
|
||||||
|
# Path within your Obsidian vault for project documentation
|
||||||
|
OBSIDIAN_DOCS_PATH=Lemontropia Suite/
|
||||||
|
|
||||||
|
# --- Gitea Repository ---
|
||||||
|
# Your Gitea repository URL
|
||||||
|
GITEA_URL=https://git.yourdomain.com/username/repository.git
|
||||||
|
|
||||||
|
# Your Gitea username
|
||||||
|
GITEA_USER=your_username
|
||||||
|
|
||||||
|
# Your Gitea personal access token (for API/git operations)
|
||||||
|
GITEA_TOKEN=your_gitea_token_here
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# --- Lemontropia-Suite Secrets & Config ---
|
# --- Lemontropia-Suite Secrets & Config ---
|
||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
|
!.env.example
|
||||||
mcp_servers.json
|
mcp_servers.json
|
||||||
# Ignore your Gitea token if it's in a separate file
|
# Ignore your Gitea token if it's in a separate file
|
||||||
gitea_token.txt
|
gitea_token.txt
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue