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
38 changes: 38 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Git
.git/
.gitignore
.github/

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd

# Virtual environments
venv/
.venv/
env/

# Secrets & credentials (inject at runtime via env vars or secrets)
.env
.envrc
firebase-service-account-key.json
ca-certificate.crt

# Docker
docker-compose.yml
.dockerignore

# Logs
*.log

# macOS
.DS_Store

# IDEs
.idea/
.vscode/

# Docs
README.md
3 changes: 2 additions & 1 deletion .env_template
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ YOUTUBE_API_KEY=
MONGO_URI=
MONGO_DB=
STAGE=
DAILY_SUN_URL=
DAILY_SUN_URL=
JWT_SECRET_KEY=
42 changes: 39 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,43 @@
venv/
.venv
# Python
__pycache__/
*.py[cod]
*.pyd
*.pyo
.Python

# Virtual environments
venv/
.venv/
env/
ENV/

# Distribution / packaging
build/
dist/
*.egg-info/
*.egg

# Testing & coverage
.pytest_cache/
.coverage
htmlcov/
.tox/

# Logs
*.log
pip-log.txt

# Secrets & credentials
.env
.envrc
firebase-service-account-key.json
ca-certificate.crt

# macOS
.DS_Store
ca-certificate.crt

# IDEs
.idea/
.vscode/
*.swp
*.swo
6 changes: 0 additions & 6 deletions package-lock.json

This file was deleted.