fix: Resolve dependency conflicts, scheduler status error, and frontend config (Closes #382)
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
# Core dependencies
|
# 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
|
uvicorn>=0.24.0
|
||||||
python-multipart>=0.0.6
|
python-multipart>=0.0.6
|
||||||
python-dotenv>=1.0.0
|
python-dotenv>=1.0.0
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ class OnboardingFullWebsiteAnalysisExecutor(TaskExecutor):
|
|||||||
|
|
||||||
task.last_executed = datetime.utcnow()
|
task.last_executed = datetime.utcnow()
|
||||||
task.last_success = 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.next_execution = None
|
||||||
task.consecutive_failures = 0
|
task.consecutive_failures = 0
|
||||||
task.failure_pattern = None
|
task.failure_pattern = None
|
||||||
|
|||||||
@@ -544,6 +544,7 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Get environment variables with fallbacks
|
// Get environment variables with fallbacks
|
||||||
const clerkPublishableKey = process.env.REACT_APP_CLERK_PUBLISHABLE_KEY || '';
|
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
|
// Show error if required keys are missing
|
||||||
if (!clerkPublishableKey) {
|
if (!clerkPublishableKey) {
|
||||||
@@ -654,7 +655,7 @@ const App: React.FC = () => {
|
|||||||
// TODO: Send to error tracking service (Sentry, LogRocket, etc.)
|
// TODO: Send to error tracking service (Sentry, LogRocket, etc.)
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ClerkProvider publishableKey={clerkPublishableKey}>
|
<ClerkProvider publishableKey={clerkPublishableKey} clerkJSUrl={clerkJSUrl}>
|
||||||
<SubscriptionProvider>
|
<SubscriptionProvider>
|
||||||
<OnboardingProvider>
|
<OnboardingProvider>
|
||||||
{renderApp()}
|
{renderApp()}
|
||||||
|
|||||||
Reference in New Issue
Block a user