INIT(app): initial setup

- Initialize project structure
- Add base application files
This commit is contained in:
2025-12-23 22:31:45 +09:00
commit 346b0c79ef
16 changed files with 1006 additions and 0 deletions

58
.gitignore vendored Normal file
View File

@@ -0,0 +1,58 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
.coverage
htmlcov/
dist/
build/
*.egg-info/
# Environment variables
.env
.env.local
.env.*.local
*.env
# Chainlit
.chainlit/
.files/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
logs/
# Docker
docker-compose.override.yml
# Kubernetes secrets (local only)
*-secret.yaml
!deploy/vault/*.yaml
# Node modules (if any frontend added)
node_modules/
package-lock.json
yarn.lock
# Temporary files
tmp/
temp/
*.tmp