mirror of
https://github.com/myronblair/kino-app
synced 2026-06-30 17:50:16 -05:00
auto-commit for 5f579f93-4e2e-4b01-a444-478762fe2864
This commit is contained in:
+60
-72
@@ -1,82 +1,70 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# --- Secrets / env ---
|
||||||
|
# (Keep these locally, NEVER commit)
|
||||||
# IDE and editors
|
.env
|
||||||
.idea/
|
.env.local
|
||||||
.vscode/
|
.env.*.local
|
||||||
|
backend/.env
|
||||||
# Dependencies
|
frontend/.env
|
||||||
node_modules/
|
|
||||||
/node_modules
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
.yarn/install-state.gz
|
|
||||||
.yarn/*
|
|
||||||
!.yarn/patches
|
|
||||||
!.yarn/plugins
|
|
||||||
!.yarn/releases
|
|
||||||
!.yarn/versions
|
|
||||||
|
|
||||||
# Testing
|
|
||||||
/coverage
|
|
||||||
|
|
||||||
# Next.js
|
|
||||||
/.next/
|
|
||||||
/out/
|
|
||||||
next-env.d.ts
|
|
||||||
*.tsbuildinfo
|
|
||||||
|
|
||||||
# Production builds
|
|
||||||
/build
|
|
||||||
dist/
|
|
||||||
dist
|
|
||||||
|
|
||||||
# Environment files (comprehensive coverage)
|
|
||||||
|
|
||||||
*token.json*
|
|
||||||
*credentials.json*
|
|
||||||
|
|
||||||
# Logs and debug files
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
.pnpm-debug.log*
|
|
||||||
dump.rdb
|
|
||||||
|
|
||||||
# System files
|
|
||||||
.DS_Store
|
|
||||||
*.pem
|
*.pem
|
||||||
|
*.key
|
||||||
|
|
||||||
# Python
|
# --- Media / user uploads ---
|
||||||
|
backend/media/
|
||||||
|
media/
|
||||||
|
*.mp4
|
||||||
|
*.mkv
|
||||||
|
*.mov
|
||||||
|
*.avi
|
||||||
|
*.webm
|
||||||
|
*.m4v
|
||||||
|
|
||||||
|
# --- Python ---
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*pyc*
|
*.py[cod]
|
||||||
venv/
|
*$py.class
|
||||||
|
*.so
|
||||||
|
.Python
|
||||||
|
*.egg
|
||||||
|
*.egg-info/
|
||||||
|
.eggs/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
.pytest_cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.coverage
|
||||||
.venv/
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
|
||||||
# Development tools
|
# --- Node / Frontend ---
|
||||||
chainlit.md
|
node_modules/
|
||||||
.chainlit
|
frontend/node_modules/
|
||||||
.ipynb_checkpoints/
|
frontend/build/
|
||||||
.ac
|
frontend/.cache/
|
||||||
|
.npm
|
||||||
|
.yarn-cache/
|
||||||
|
yarn-error.log
|
||||||
|
npm-debug.log*
|
||||||
|
|
||||||
# Deployment
|
# --- IDE / OS ---
|
||||||
.vercel
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
# Data and databases
|
# --- Logs ---
|
||||||
agenthub/agents/youtube/db
|
logs/
|
||||||
|
*.log
|
||||||
|
|
||||||
# Archive files and large assets
|
# --- Test reports / agent runtime ---
|
||||||
**/*.zip
|
test_reports/
|
||||||
**/*.tar.gz
|
.emergent/
|
||||||
**/*.tar
|
tests/__pycache__/
|
||||||
**/*.tgz
|
|
||||||
*.pack
|
|
||||||
*.deb
|
|
||||||
*.dylib
|
|
||||||
|
|
||||||
# Build caches
|
# --- Misc ---
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
.cache/
|
.cache/
|
||||||
|
|
||||||
memory/test_credentials.md
|
|
||||||
|
|
||||||
# Mobile development
|
|
||||||
android-sdk/
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# Test Credentials
|
||||||
|
|
||||||
|
## Admin (seeded automatically on backend startup)
|
||||||
|
- Email: `admin@kino.local`
|
||||||
|
- Password: `kino-admin-2026`
|
||||||
|
- Role: admin
|
||||||
|
|
||||||
|
## Test User (you can register one via the UI)
|
||||||
|
- Email: `test@kino.local`
|
||||||
|
- Password: `testuser123`
|
||||||
|
- Role: member
|
||||||
Reference in New Issue
Block a user