diff --git a/.env b/.env deleted file mode 100644 index acfbf4f3..00000000 --- a/.env +++ /dev/null @@ -1,25 +0,0 @@ -# Database -POSTGRES_SERVER=localhost -POSTGRES_USER=postgres -POSTGRES_PASSWORD=postgres -POSTGRES_DB=planet_db -DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/planet_db - -# Redis -REDIS_SERVER=localhost -REDIS_PORT=6379 -REDIS_URL=redis://localhost:6379/0 - -# Security -SECRET_KEY=your-secret-key-change-in-production -ALGORITHM=HS256 -ACCESS_TOKEN_EXPIRE_MINUTES=15 -REFRESH_TOKEN_EXPIRE_DAYS=7 - -# API -API_V1_STR=/api/v1 -PROJECT_NAME="Intelligent Planet Plan" -VERSION=1.0.0 - -# CORS -CORS_ORIGINS=["http://localhost:3000", "http://localhost:8000"] diff --git a/backend/app/__pycache__/__init__.cpython-311.pyc b/backend/app/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 33194c8f..00000000 Binary files a/backend/app/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/backend/app/__pycache__/main.cpython-311.pyc b/backend/app/__pycache__/main.cpython-311.pyc deleted file mode 100644 index e53e5438..00000000 Binary files a/backend/app/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/__pycache__/main.cpython-311.pyc b/backend/app/api/__pycache__/main.cpython-311.pyc deleted file mode 100644 index 23b54aea..00000000 Binary files a/backend/app/api/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/alerts.cpython-311.pyc b/backend/app/api/v1/__pycache__/alerts.cpython-311.pyc deleted file mode 100644 index c606af7a..00000000 Binary files a/backend/app/api/v1/__pycache__/alerts.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/auth.cpython-311.pyc b/backend/app/api/v1/__pycache__/auth.cpython-311.pyc deleted file mode 100644 index 699cf5f0..00000000 Binary files a/backend/app/api/v1/__pycache__/auth.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/dashboard.cpython-311.pyc b/backend/app/api/v1/__pycache__/dashboard.cpython-311.pyc deleted file mode 100644 index 974f474e..00000000 Binary files a/backend/app/api/v1/__pycache__/dashboard.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/datasource_config.cpython-311.pyc b/backend/app/api/v1/__pycache__/datasource_config.cpython-311.pyc deleted file mode 100644 index 6a93cbe3..00000000 Binary files a/backend/app/api/v1/__pycache__/datasource_config.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/datasources.cpython-311.pyc b/backend/app/api/v1/__pycache__/datasources.cpython-311.pyc deleted file mode 100644 index 15068795..00000000 Binary files a/backend/app/api/v1/__pycache__/datasources.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/settings.cpython-311.pyc b/backend/app/api/v1/__pycache__/settings.cpython-311.pyc deleted file mode 100644 index 82c3167c..00000000 Binary files a/backend/app/api/v1/__pycache__/settings.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/tasks.cpython-311.pyc b/backend/app/api/v1/__pycache__/tasks.cpython-311.pyc deleted file mode 100644 index a14444f5..00000000 Binary files a/backend/app/api/v1/__pycache__/tasks.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/users.cpython-311.pyc b/backend/app/api/v1/__pycache__/users.cpython-311.pyc deleted file mode 100644 index e965fc02..00000000 Binary files a/backend/app/api/v1/__pycache__/users.cpython-311.pyc and /dev/null differ diff --git a/backend/app/api/v1/__pycache__/websocket.cpython-311.pyc b/backend/app/api/v1/__pycache__/websocket.cpython-311.pyc deleted file mode 100644 index 01422a72..00000000 Binary files a/backend/app/api/v1/__pycache__/websocket.cpython-311.pyc and /dev/null differ diff --git a/backend/app/core/__pycache__/cache.cpython-311.pyc b/backend/app/core/__pycache__/cache.cpython-311.pyc deleted file mode 100644 index 75c2a6b5..00000000 Binary files a/backend/app/core/__pycache__/cache.cpython-311.pyc and /dev/null differ diff --git a/backend/app/core/__pycache__/config.cpython-311.pyc b/backend/app/core/__pycache__/config.cpython-311.pyc deleted file mode 100644 index 3750f72c..00000000 Binary files a/backend/app/core/__pycache__/config.cpython-311.pyc and /dev/null differ diff --git a/backend/app/core/__pycache__/security.cpython-311.pyc b/backend/app/core/__pycache__/security.cpython-311.pyc deleted file mode 100644 index fc8ad15a..00000000 Binary files a/backend/app/core/__pycache__/security.cpython-311.pyc and /dev/null differ diff --git a/backend/app/core/websocket/__pycache__/__init__.cpython-311.pyc b/backend/app/core/websocket/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4268ffaf..00000000 Binary files a/backend/app/core/websocket/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/backend/app/core/websocket/__pycache__/broadcaster.cpython-311.pyc b/backend/app/core/websocket/__pycache__/broadcaster.cpython-311.pyc deleted file mode 100644 index 81d6675b..00000000 Binary files a/backend/app/core/websocket/__pycache__/broadcaster.cpython-311.pyc and /dev/null differ diff --git a/backend/app/core/websocket/__pycache__/manager.cpython-311.pyc b/backend/app/core/websocket/__pycache__/manager.cpython-311.pyc deleted file mode 100644 index eb6685ca..00000000 Binary files a/backend/app/core/websocket/__pycache__/manager.cpython-311.pyc and /dev/null differ diff --git a/backend/app/db/__pycache__/session.cpython-311.pyc b/backend/app/db/__pycache__/session.cpython-311.pyc deleted file mode 100644 index f72450db..00000000 Binary files a/backend/app/db/__pycache__/session.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/__init__.cpython-311.pyc b/backend/app/models/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 719c282f..00000000 Binary files a/backend/app/models/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/alert.cpython-311.pyc b/backend/app/models/__pycache__/alert.cpython-311.pyc deleted file mode 100644 index 3b72bfdd..00000000 Binary files a/backend/app/models/__pycache__/alert.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/collected_data.cpython-311.pyc b/backend/app/models/__pycache__/collected_data.cpython-311.pyc deleted file mode 100644 index 6c121a6f..00000000 Binary files a/backend/app/models/__pycache__/collected_data.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/datasource.cpython-311.pyc b/backend/app/models/__pycache__/datasource.cpython-311.pyc deleted file mode 100644 index 03af9413..00000000 Binary files a/backend/app/models/__pycache__/datasource.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/datasource_config.cpython-311.pyc b/backend/app/models/__pycache__/datasource_config.cpython-311.pyc deleted file mode 100644 index d61e3a53..00000000 Binary files a/backend/app/models/__pycache__/datasource_config.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/gpu_cluster.cpython-311.pyc b/backend/app/models/__pycache__/gpu_cluster.cpython-311.pyc deleted file mode 100644 index 1fc110c6..00000000 Binary files a/backend/app/models/__pycache__/gpu_cluster.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/task.cpython-311.pyc b/backend/app/models/__pycache__/task.cpython-311.pyc deleted file mode 100644 index cd7514be..00000000 Binary files a/backend/app/models/__pycache__/task.cpython-311.pyc and /dev/null differ diff --git a/backend/app/models/__pycache__/user.cpython-311.pyc b/backend/app/models/__pycache__/user.cpython-311.pyc deleted file mode 100644 index de76069f..00000000 Binary files a/backend/app/models/__pycache__/user.cpython-311.pyc and /dev/null differ diff --git a/backend/app/schemas/__pycache__/token.cpython-311.pyc b/backend/app/schemas/__pycache__/token.cpython-311.pyc deleted file mode 100644 index 3da9401f..00000000 Binary files a/backend/app/schemas/__pycache__/token.cpython-311.pyc and /dev/null differ diff --git a/backend/app/schemas/__pycache__/user.cpython-311.pyc b/backend/app/schemas/__pycache__/user.cpython-311.pyc deleted file mode 100644 index bd1346e2..00000000 Binary files a/backend/app/schemas/__pycache__/user.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/__pycache__/scheduler.cpython-311.pyc b/backend/app/services/__pycache__/scheduler.cpython-311.pyc deleted file mode 100644 index b4e49b24..00000000 Binary files a/backend/app/services/__pycache__/scheduler.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/__init__.cpython-311.pyc b/backend/app/services/collectors/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3c1d87e6..00000000 Binary files a/backend/app/services/collectors/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/base.cpython-311.pyc b/backend/app/services/collectors/__pycache__/base.cpython-311.pyc deleted file mode 100644 index e49fbf33..00000000 Binary files a/backend/app/services/collectors/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/cloudflare.cpython-311.pyc b/backend/app/services/collectors/__pycache__/cloudflare.cpython-311.pyc deleted file mode 100644 index 91cc5bda..00000000 Binary files a/backend/app/services/collectors/__pycache__/cloudflare.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/epoch_ai.cpython-311.pyc b/backend/app/services/collectors/__pycache__/epoch_ai.cpython-311.pyc deleted file mode 100644 index 2adaa303..00000000 Binary files a/backend/app/services/collectors/__pycache__/epoch_ai.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/huggingface.cpython-311.pyc b/backend/app/services/collectors/__pycache__/huggingface.cpython-311.pyc deleted file mode 100644 index 34a3ca0b..00000000 Binary files a/backend/app/services/collectors/__pycache__/huggingface.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/peeringdb.cpython-311.pyc b/backend/app/services/collectors/__pycache__/peeringdb.cpython-311.pyc deleted file mode 100644 index 7a5d11f0..00000000 Binary files a/backend/app/services/collectors/__pycache__/peeringdb.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/registry.cpython-311.pyc b/backend/app/services/collectors/__pycache__/registry.cpython-311.pyc deleted file mode 100644 index b6657fb3..00000000 Binary files a/backend/app/services/collectors/__pycache__/registry.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/telegeography.cpython-311.pyc b/backend/app/services/collectors/__pycache__/telegeography.cpython-311.pyc deleted file mode 100644 index 28660327..00000000 Binary files a/backend/app/services/collectors/__pycache__/telegeography.cpython-311.pyc and /dev/null differ diff --git a/backend/app/services/collectors/__pycache__/top500.cpython-311.pyc b/backend/app/services/collectors/__pycache__/top500.cpython-311.pyc deleted file mode 100644 index 64e2c9d3..00000000 Binary files a/backend/app/services/collectors/__pycache__/top500.cpython-311.pyc and /dev/null differ diff --git a/backend/tests/__pycache__/__init__.cpython-311.pyc b/backend/tests/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f317ea95..00000000 Binary files a/backend/tests/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/backend/tests/__pycache__/conftest.cpython-311-pytest-9.0.2.pyc b/backend/tests/__pycache__/conftest.cpython-311-pytest-9.0.2.pyc deleted file mode 100644 index 13444cdf..00000000 Binary files a/backend/tests/__pycache__/conftest.cpython-311-pytest-9.0.2.pyc and /dev/null differ diff --git a/backend/tests/__pycache__/test_api.cpython-311-pytest-9.0.2.pyc b/backend/tests/__pycache__/test_api.cpython-311-pytest-9.0.2.pyc deleted file mode 100644 index 19f330c3..00000000 Binary files a/backend/tests/__pycache__/test_api.cpython-311-pytest-9.0.2.pyc and /dev/null differ diff --git a/backend/tests/__pycache__/test_collectors.cpython-311-pytest-9.0.2.pyc b/backend/tests/__pycache__/test_collectors.cpython-311-pytest-9.0.2.pyc deleted file mode 100644 index d2ea36f7..00000000 Binary files a/backend/tests/__pycache__/test_collectors.cpython-311-pytest-9.0.2.pyc and /dev/null differ diff --git a/backend/tests/__pycache__/test_models.cpython-311-pytest-9.0.2.pyc b/backend/tests/__pycache__/test_models.cpython-311-pytest-9.0.2.pyc deleted file mode 100644 index a5d41df7..00000000 Binary files a/backend/tests/__pycache__/test_models.cpython-311-pytest-9.0.2.pyc and /dev/null differ diff --git a/backend/tests/__pycache__/test_security.cpython-311-pytest-9.0.2.pyc b/backend/tests/__pycache__/test_security.cpython-311-pytest-9.0.2.pyc deleted file mode 100644 index b7c43710..00000000 Binary files a/backend/tests/__pycache__/test_security.cpython-311-pytest-9.0.2.pyc and /dev/null differ