chore: 迁移到 social-app 架构,集成 Supabase 和 taskiq worker
This commit is contained in:
+241
-95
@@ -1,71 +1,198 @@
|
||||
# ============================================
|
||||
# Environment & Secrets
|
||||
# ============================================
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
!.env.example
|
||||
|
||||
# ============================================
|
||||
# Python
|
||||
# ============================================
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[codz]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
/lib/
|
||||
/lib64/
|
||||
!apps/lib/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py.cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
htmlcov/
|
||||
cover/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
.pybuilder/
|
||||
target/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# pipenv
|
||||
# Pipfile.lock
|
||||
|
||||
# UV
|
||||
# uv.lock
|
||||
|
||||
# poetry
|
||||
# poetry.lock
|
||||
# poetry.toml
|
||||
|
||||
# pdm
|
||||
# pdm.lock
|
||||
# pdm.toml
|
||||
.pdm-python
|
||||
.pdm-build/
|
||||
|
||||
# pixi
|
||||
# pixi.lock
|
||||
.pixi
|
||||
|
||||
# PEP 582
|
||||
__pypackages__/
|
||||
|
||||
# Celery stuff
|
||||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# Redis
|
||||
*.rdb
|
||||
*.aof
|
||||
*.pid
|
||||
|
||||
# RabbitMQ
|
||||
mnesia/
|
||||
rabbitmq/
|
||||
rabbitmq-data/
|
||||
|
||||
# ActiveMQ
|
||||
activemq-data/
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.envrc
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
.spyproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
.pyre/
|
||||
.pytype/
|
||||
*.log
|
||||
db.sqlite3
|
||||
|
||||
# ============================================
|
||||
# Flutter
|
||||
# ============================================
|
||||
/bin/cache/
|
||||
/bin/internal/
|
||||
/dev/benchmarks/
|
||||
/dev/bots/
|
||||
/dev/docs/
|
||||
/dev/integration_tests/**/xcuserdata
|
||||
/dev/integration_tests/**/Pods
|
||||
/packages/flutter/coverage/
|
||||
version
|
||||
analysis_benchmark.json
|
||||
.packages.generated
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# pytype static type analyzer
|
||||
.pytype/
|
||||
|
||||
# Cython debug symbols
|
||||
cython_debug/
|
||||
|
||||
# Ruff stuff:
|
||||
.ruff_cache/
|
||||
|
||||
# PyPI configuration file
|
||||
.pypirc
|
||||
|
||||
# Marimo
|
||||
marimo/_static/
|
||||
marimo/_lsp/
|
||||
__marimo__/
|
||||
|
||||
# Streamlit
|
||||
.streamlit/secrets.toml
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
.dart_tool/
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
.dart_tool/flutter_build/
|
||||
**/generated_plugin_registrant.dart
|
||||
.packages
|
||||
.pub-preload-cache/
|
||||
.pub/
|
||||
build/
|
||||
flutter_*.png
|
||||
linked_*.ds
|
||||
unlinked.ds
|
||||
unlinked_spec.ds
|
||||
|
||||
# Android
|
||||
# IDE
|
||||
.idea/
|
||||
|
||||
# Android related
|
||||
**/android/**/gradle-wrapper.jar
|
||||
.gradle/
|
||||
**/android/captures/
|
||||
@@ -75,8 +202,9 @@ flutter_*.png
|
||||
**/android/**/GeneratedPluginRegistrant.java
|
||||
**/android/key.properties
|
||||
*.jks
|
||||
**/android/**/*.iml
|
||||
|
||||
# iOS/XCode
|
||||
# iOS/XCode related
|
||||
**/ios/**/*.mode1v3
|
||||
**/ios/**/*.mode2v3
|
||||
**/ios/**/*.moved-aside
|
||||
@@ -102,8 +230,12 @@ flutter_*.png
|
||||
**/ios/Flutter/app.flx
|
||||
**/ios/Flutter/app.zip
|
||||
**/ios/Flutter/flutter_assets/
|
||||
**/ios/Flutter/flutter_export_environment.sh
|
||||
**/ios/ServiceDefinitions.json
|
||||
**/ios/Runner/GeneratedPluginRegistrant.*
|
||||
**/ios/Podfile.lock
|
||||
**/ios/Runner.xcodeproj/
|
||||
**/ios/Runner.xcworkspace/
|
||||
|
||||
# macOS
|
||||
**/Flutter/ephemeral/
|
||||
@@ -112,78 +244,92 @@ flutter_*.png
|
||||
**/macos/Flutter/ephemeral
|
||||
**/xcuserdata/
|
||||
|
||||
# Linux
|
||||
**/linux/flutter/generated_plugin_registrant.cc
|
||||
**/linux/flutter/generated_plugin_registrant.h
|
||||
**/linux/flutter/generated_plugins.cmake
|
||||
|
||||
# Windows
|
||||
**/windows/flutter/generated_plugin_registrant.cc
|
||||
**/windows/flutter/generated_plugin_registrant.h
|
||||
**/windows/flutter/generated_plugins.cmake
|
||||
**/windows/runner/
|
||||
|
||||
# Linux
|
||||
**/linux/flutter/generated_plugin_registrant.cc
|
||||
**/linux/flutter/generated_plugin_registrant.h
|
||||
**/linux/flutter/generated_plugins.cmake
|
||||
|
||||
# Coverage
|
||||
coverage/
|
||||
|
||||
# ============================================
|
||||
# Kotlin / Gradle / Android
|
||||
# ============================================
|
||||
# Symbols
|
||||
app.*.symbols
|
||||
|
||||
# Exceptions to above rules.
|
||||
!**/ios/**/default.mode1v3
|
||||
!**/ios/**/default.mode2v3
|
||||
!**/ios/**/default.pbxuser
|
||||
!**/ios/**/default.perspectivev3
|
||||
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
|
||||
!/dev/ci/**/Gemfile.lock
|
||||
|
||||
# Local environment files
|
||||
infra/local/env/*.env
|
||||
configs/env/*.env
|
||||
infra/cloud/volcano/env/*.env
|
||||
!infra/local/env/*.env.example
|
||||
!configs/env/*.env.example
|
||||
!infra/cloud/volcano/env/*.env.example
|
||||
.env.local
|
||||
.env.*.local
|
||||
.env.cloud
|
||||
.env.*.cloud
|
||||
deploy/.env.prod
|
||||
|
||||
# Misc
|
||||
*.class
|
||||
*.log
|
||||
*.lock
|
||||
*.swp
|
||||
.buildlog/
|
||||
.history
|
||||
build/
|
||||
app/build/
|
||||
login-service/build/
|
||||
.gradle/
|
||||
.idea/
|
||||
!.idea/codeStyles/
|
||||
*.iml
|
||||
out/
|
||||
*.apk
|
||||
*.aab
|
||||
*.dex
|
||||
/logs/
|
||||
backend/logs/
|
||||
backend/data/analytics/
|
||||
*.tar.gz
|
||||
*.tar
|
||||
# Docker volumes (local data)
|
||||
docker/supabase/volumes/db/data/
|
||||
infra/docker/volumes/db/data/
|
||||
infra/docker/supabase/volumes/db/data/
|
||||
infra/docker/supabase/volumes/storage/
|
||||
|
||||
# ============================================
|
||||
# Node.js
|
||||
# ============================================
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
# OpenCode local config
|
||||
# .opencode/ is now tracked - see .opencode/.gitignore for exclusions
|
||||
|
||||
# ============================================
|
||||
# Java / Spring Boot
|
||||
# ============================================
|
||||
target/
|
||||
*.class
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
hs_err_pid*
|
||||
spring-boot-*.jar
|
||||
# Agents and skills
|
||||
.agents/
|
||||
|
||||
# ============================================
|
||||
# IDE
|
||||
# ============================================
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
# Local git worktrees
|
||||
.worktrees/
|
||||
worktrees/
|
||||
|
||||
# Runtime temp files
|
||||
.tmp/
|
||||
|
||||
# macOS system files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.sublime-*
|
||||
.idea/
|
||||
*.iml
|
||||
atlassian-ide-plugin.xml
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
**/.DS_Store
|
||||
|
||||
# ============================================
|
||||
# Misc
|
||||
# ============================================
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
*.rdb
|
||||
*.aof
|
||||
*.pid
|
||||
# Deploy releases (APK files only, keep manifest.json)
|
||||
deploy/static/releases/*.apk
|
||||
deploy/static/releases/*.ipa
|
||||
|
||||
# ============================================
|
||||
# Local folders
|
||||
# ============================================
|
||||
# Superset
|
||||
.superset/
|
||||
|
||||
# Local agents and skills
|
||||
.agents/
|
||||
|
||||
# Old legacy code
|
||||
old/
|
||||
|
||||
Reference in New Issue
Block a user