Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/todo0/.env.app.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SESSION_SECRET=your-session-secret-change-in-production
# ============================================================================
# TODO0 APP - OKTA OAUTH (HUMAN SSO)
# ============================================================================
OKTA_ISSUER=https://your-domain.okta.com/oauth2/default
OKTA_ISSUER=https://your-domain.okta.com/
OKTA_CLIENT_ID=your_client_id_here
OKTA_CLIENT_SECRET=your_client_secret_here
OKTA_REDIRECT_URI=http://localhost:5001/callback
Expand Down
10 changes: 6 additions & 4 deletions scripts/bootstrap-okta-tenant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,12 @@ async function bootstrap() {

console.log('Next steps:');
console.log(` 1. ${chalk.cyan('pnpm install')} - Install dependencies`);
console.log(` 2. ${chalk.cyan('pnpm run bootstrap')} - Bootstrap database`);
console.log(` 3. ${chalk.cyan('pnpm run start:todo0')} - Start REST API`);
console.log(` 4. ${chalk.cyan('pnpm run start:mcp')} - Start MCP Server`);
console.log(` 5. ${chalk.cyan('pnpm run start:agent0')} - Start Agent`);
console.log(` 2. ${chalk.cyan('pnpm run build')} - Build and bootstrap database`);
console.log(` 3. ${chalk.cyan('pnpm run dev')} - Start all services together`);
console.log(`\n Or run in separate terminals:`);
console.log(` ${chalk.cyan('pnpm run start:todo0')} - Start REST API`);
console.log(` ${chalk.cyan('pnpm run start:mcp')} - Start MCP Server`);
console.log(` ${chalk.cyan('pnpm run start:agent0')} - Start Agent`);
console.log(`\n Optional: ${chalk.cyan('pnpm run validate:okta')} - Validate configuration`);
console.log(`\n📄 See ${chalk.cyan('okta-config-report.md')} for detailed configuration\n`);
} catch (error: any) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/env-writer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ SESSION_SECRET=${generateSessionSecret()}
# ============================================================================
# APP SERVER - OKTA OAUTH (HUMAN SSO)
# ============================================================================
OKTA_ISSUER=https://${config.oktaDomain}/oauth2/default
OKTA_ISSUER=https://${config.oktaDomain}/
OKTA_CLIENT_ID=${config.todo0AppClientId}
OKTA_CLIENT_SECRET=${config.todo0AppClientSecret}
OKTA_REDIRECT_URI=http://localhost:5001/callback
Expand Down