From c4ff917d758953074777b5744671eaf199cb8fc6 Mon Sep 17 00:00:00 2001 From: ImpulsiveFPS Date: Sun, 8 Feb 2026 17:24:49 +0100 Subject: [PATCH] feat(config): add .env.example template and update .gitignore --- .env.example | 37 +++++++++++++++++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 38 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..a9564a3 --- /dev/null +++ b/.env.example @@ -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\\.ssh\id_ed25519 + +# Your SSH public key (for reference) +SSH_PUB_KEY=ssh-ed25519 + +# 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\\Documents\AA2-Repositories\Lemontropia-Suite + +# Path to Entropia Universe game logs directory +ENTROPIA_LOGS=C:\Users\\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 diff --git a/.gitignore b/.gitignore index 2d43242..0cf4888 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # --- Lemontropia-Suite Secrets & Config --- .env .env.* +!.env.example mcp_servers.json # Ignore your Gitea token if it's in a separate file gitea_token.txt