fix: Resolve dependency conflicts, scheduler status error, and frontend config (Closes #382)

This commit is contained in:
ajaysi
2026-03-07 11:51:59 +05:30
parent 5d49351c2d
commit 8b554a35c4
3 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
# Core dependencies
fastapi>=0.104.0
fastapi>=0.115.14
starlette>=0.40.0,<0.47.0
sse-starlette<3.0.0
uvicorn>=0.24.0
python-multipart>=0.0.6
python-dotenv>=1.0.0

View File

@@ -81,7 +81,7 @@ class OnboardingFullWebsiteAnalysisExecutor(TaskExecutor):
task.last_executed = datetime.utcnow()
task.last_success = datetime.utcnow()
task.status = 'paused'
task.status = 'completed' # Explicitly mark as completed instead of paused
task.next_execution = None
task.consecutive_failures = 0
task.failure_pattern = None

View File

@@ -544,6 +544,7 @@ const App: React.FC = () => {
// Get environment variables with fallbacks
const clerkPublishableKey = process.env.REACT_APP_CLERK_PUBLISHABLE_KEY || '';
const clerkJSUrl = process.env.REACT_APP_CLERK_JS_URL;
// Show error if required keys are missing
if (!clerkPublishableKey) {
@@ -654,7 +655,7 @@ const App: React.FC = () => {
// TODO: Send to error tracking service (Sentry, LogRocket, etc.)
}}
>
<ClerkProvider publishableKey={clerkPublishableKey}>
<ClerkProvider publishableKey={clerkPublishableKey} clerkJSUrl={clerkJSUrl}>
<SubscriptionProvider>
<OnboardingProvider>
{renderApp()}