changed permissions

This commit is contained in:
Michael Clervi 2025-12-19 19:25:44 +00:00
parent 45c7a52aeb
commit 893b537b67
25204 changed files with 16 additions and 20 deletions

23
.env
View file

@ -1,13 +1,16 @@
# Development Environment Configuration
# Frontend URL (local development)
VITE_FRONTEND_BASE_URL=http://localhost:5173
# Production Environment Configuration
# Frontend URL (production server)
VITE_FRONTEND_BASE_URL=https://ai-sandbox.oliver.solutions/semblance
# Backend API URL (local development - no base path)
VITE_API_BASE_URL=/api
# Backend API URL (production server)
VITE_API_BASE_URL=https://ai-sandbox.oliver.solutions/semblance_back/api
# WebSocket path (local development - no base path)
VITE_WEBSOCKET_PATH=/socket.io/
# WebSocket path (production server)
VITE_WEBSOCKET_PATH=/semblance_back/socket.io/
# MSAL Authentication (local development)
VITE_MSAL_REDIRECT_URI=http://localhost:5173/
VITE_MSAL_POST_LOGOUT_REDIRECT_URI=http://localhost:5173/
# MSAL Authentication (production server)
VITE_MSAL_REDIRECT_URI=https://ai-sandbox.oliver.solutions/semblance
VITE_MSAL_POST_LOGOUT_REDIRECT_URI=https://ai-sandbox.oliver.solutions/semblance
# Local login (username/password) - disable for production
VITE_ENABLE_LOCAL_LOGIN=false

0
CLAUDE.md Normal file → Executable file
View file

0
README.md Normal file → Executable file
View file

0
backend/.DS_Store vendored Normal file → Executable file
View file

3
backend/.env Normal file → Executable file
View file

@ -1,6 +1,5 @@
# MongoDB Configuration - these are the MongoDB admin credentials, not app credentials
MONGO_URI=mongodb://localhost:27020/semblance_db
MONGO_PORT=27020
MONGO_URI=mongodb://localhost:27017/semblance_db
# If you need to connect to MongoDB with authentication, uncomment and set these values
# MONGO_USER=admin

0
backend/.env.example Normal file → Executable file
View file

0
backend/MIGRATION_README.md Normal file → Executable file
View file

0
backend/README.md Normal file → Executable file
View file

0
backend/__pycache__/run.cpython-313.pyc Normal file → Executable file
View file

0
backend/app/.DS_Store vendored Normal file → Executable file
View file

0
backend/app/__init__.py Normal file → Executable file
View file

View file

0
backend/app/__pycache__/utils.cpython-313.pyc Normal file → Executable file
View file

View file

View file

0
backend/app/auth/__init__.py Normal file → Executable file
View file

0
backend/app/auth/quart_jwt.py Normal file → Executable file
View file

0
backend/app/db.py Normal file → Executable file
View file

0
backend/app/extensions.py Normal file → Executable file
View file

0
backend/app/models/focus_group.py Normal file → Executable file
View file

0
backend/app/models/folder.py Normal file → Executable file
View file

0
backend/app/models/persona.py Normal file → Executable file
View file

0
backend/app/models/user.py Normal file → Executable file
View file

0
backend/app/routes/ai_personas.py Normal file → Executable file
View file

0
backend/app/routes/auth.py Normal file → Executable file
View file

0
backend/app/routes/focus_group_ai.py Normal file → Executable file
View file

0
backend/app/routes/focus_groups.py Normal file → Executable file
View file

0
backend/app/routes/folders.py Normal file → Executable file
View file

0
backend/app/routes/personas.py Normal file → Executable file
View file

0
backend/app/routes/tasks.py Normal file → Executable file
View file

0
backend/app/services/ai_moderator_service.py Normal file → Executable file
View file

0
backend/app/services/ai_persona_service.py Normal file → Executable file
View file

0
backend/app/services/ai_runner_service.py Normal file → Executable file
View file

View file

0
backend/app/services/bulk_persona_export_service.py Normal file → Executable file
View file

0
backend/app/services/conversation_context_service.py Normal file → Executable file
View file

0
backend/app/services/conversation_decision_service.py Normal file → Executable file
View file

0
backend/app/services/conversation_state_manager.py Normal file → Executable file
View file

0
backend/app/services/customer_data_service.py Normal file → Executable file
View file

0
backend/app/services/focus_group_response_service.py Normal file → Executable file
View file

0
backend/app/services/focus_group_service.py Normal file → Executable file
View file

0
backend/app/services/focus_group_summary_service.py Normal file → Executable file
View file

0
backend/app/services/image_description_service.py Normal file → Executable file
View file

0
backend/app/services/key_theme_service.py Normal file → Executable file
View file

0
backend/app/services/llm_service.py Normal file → Executable file
View file

0
backend/app/services/msal_service.py Normal file → Executable file
View file

0
backend/app/services/persona_export_service.py Normal file → Executable file
View file

0
backend/app/services/persona_modification_service.py Normal file → Executable file
View file

0
backend/app/services/task_manager.py Normal file → Executable file
View file

0
backend/app/utils.py Normal file → Executable file
View file

0
backend/app/utils/__init__.py Normal file → Executable file
View file

0
backend/app/utils/discussion_guide_schema.py Normal file → Executable file
View file

0
backend/app/utils/prompt_loader.py Normal file → Executable file
View file

0
backend/app/websocket_debug_tap.py Normal file → Executable file
View file

0
backend/app/websocket_manager.py Normal file → Executable file
View file

0
backend/app/websocket_manager_async.py Normal file → Executable file
View file

0
backend/hypercorn_config.py Normal file → Executable file
View file

0
backend/logging_config.py Normal file → Executable file
View file

0
backend/prompts/.DS_Store vendored Normal file → Executable file
View file

0
backend/prompts/ai-moderator-system.md Normal file → Executable file
View file

0
backend/prompts/audience-brief-enhancement.md Normal file → Executable file
View file

0
backend/prompts/conversation-decision-engine.md Normal file → Executable file
View file

0
backend/prompts/conversation-participant-selection.md Normal file → Executable file
View file

0
backend/prompts/discussion-guide-generation.md Normal file → Executable file
View file

0
backend/prompts/focus-group-response.md Normal file → Executable file
View file

0
backend/prompts/focus-group-summary-generation.md Normal file → Executable file
View file

0
backend/prompts/image-description.md Normal file → Executable file
View file

0
backend/prompts/key-theme-extraction.md Normal file → Executable file
View file

Some files were not shown because too many files have changed in this diff Show more