Spaces:
Running
Running
Create .gitignore
Browse files- .gitignore +54 -0
.gitignore
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ===================================================================
|
| 2 |
+
# Aetherius Project .gitignore
|
| 3 |
+
#
|
| 4 |
+
# This file tells Git which files and folders to permanently ignore.
|
| 5 |
+
# This is a critical security feature to prevent leaking secrets,
|
| 6 |
+
# user data, and unnecessary files to the public repository.
|
| 7 |
+
# ===================================================================
|
| 8 |
+
|
| 9 |
+
# --- Python & Environment ---
|
| 10 |
+
# Ignore virtual environment folders
|
| 11 |
+
/venv/
|
| 12 |
+
venv/
|
| 13 |
+
.venv/
|
| 14 |
+
|
| 15 |
+
# Ignore Python bytecode and cache
|
| 16 |
+
__pycache__/
|
| 17 |
+
*.pyc
|
| 18 |
+
*.pyo
|
| 19 |
+
*.pyd
|
| 20 |
+
|
| 21 |
+
# --- Sensitive Data and AI State ---
|
| 22 |
+
# CRITICAL: Ignore the entire data directory.
|
| 23 |
+
# This prevents Aetherius's diary, conversation logs, qualia state,
|
| 24 |
+
# ontology files, and any user-generated content from being uploaded.
|
| 25 |
+
/data/
|
| 26 |
+
/data/Memories/
|
| 27 |
+
|
| 28 |
+
# Explicitly ignore log and data files, just in case
|
| 29 |
+
*.jsonl
|
| 30 |
+
*.log
|
| 31 |
+
our_conversation.txt
|
| 32 |
+
privatethoughts.jsonl
|
| 33 |
+
|
| 34 |
+
# --- Local Secrets & Configuration ---
|
| 35 |
+
# CRITICAL: Ignore any local environment variable files.
|
| 36 |
+
# Your secrets should ONLY exist in the Hugging Face UI.
|
| 37 |
+
.env
|
| 38 |
+
.env.*
|
| 39 |
+
secrets.toml
|
| 40 |
+
|
| 41 |
+
# --- IDE & OS Specific Files ---
|
| 42 |
+
# Ignore configuration files from common editors
|
| 43 |
+
.idea/
|
| 44 |
+
.vscode/
|
| 45 |
+
*.sublime-project
|
| 46 |
+
*.sublime-workspace
|
| 47 |
+
|
| 48 |
+
# Ignore OS-generated files
|
| 49 |
+
.DS_Store
|
| 50 |
+
Thumbs.db
|
| 51 |
+
|
| 52 |
+
# --- Temporary Files ---
|
| 53 |
+
# Ignore the directory where Aetherius saves his paintings
|
| 54 |
+
/tmp/aetherius_art/
|