Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions 1_foundations/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Test files
test_*.py
run_tests.sh
htmlcov/
.coverage
.pytest_cache/
requirements_test.txt

# Development files
*.pyc
__pycache__/
.DS_Store
.vscode/
.idea/

# Database (will be created fresh)
career_bot.db
*.db
*.db-journal
*.db-wal

# Logs
*.log
app.log

# Documentation (not needed for deployment)
DEPLOYMENT_*.md
HUGGINGFACE_DEPLOYMENT.md
README_DEPLOYMENT.md
README_NEW_FEATURES.md
README_HF.md
APPROVAL_*.md
FEATURES_V2.md
YENI_OZELLIKLER.md

# Old versions
app.py
app_old.py
app_new_backup.py
app_new_broken.py
app_new_old.py

# Community contributions (if not needed)
community_contributions/

# Backup files
*.backup
*.bak
*.tmp
12 changes: 12 additions & 0 deletions 1_foundations/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# IntellaPersona Environment Variables
# ======================================

# REQUIRED: OpenAI API Key
OPENAI_API_KEY=your_openai_api_key_here

# OPTIONAL: PushOver Notifications
PUSHOVER_USER_KEY=
PUSHOVER_API_TOKEN=

# Note: Replace 'your_openai_api_key_here' with your actual OpenAI API key
# Get it from: https://platform.openai.com/api-keys
77 changes: 77 additions & 0 deletions 1_foundations/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Career Bot Specific .gitignore
# Hassas bilgiler ve geliştirme dosyaları

# Database files - production için
*.db
*.db-journal
*.db-wal
*.db-shm
career_bot.db
app.log

# Environment variables ve secrets
.env
.env.local
.env.production
secrets.txt

# Test outputs
htmlcov/
.coverage
.pytest_cache/
test_results/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Python
__pycache__/
*.py[cod]
*$py.class
*.so

# Temporary files
*.tmp
*.bak
*.backup
temp/
tmp/

# User uploaded content (if any)
uploads/
user_files/

# Logs
*.log
logs/
app.log

# OS files
.DS_Store
Thumbs.db

# Build artifacts
dist/
build/
*.egg-info/

# Virtual environments
venv/
env/
.venv/

# Deployment
deployment_backup/
old_versions/

# Hugging Face specific
.huggingface/

# Local development
local_test.py
scratch.py
debug_*.py
Loading