implemented step 20 by Gemini

- README documentation
This commit is contained in:
2026-06-15 05:25:10 +02:00
parent 8ed5413116
commit cea97332b4
2 changed files with 80 additions and 4 deletions

View File

@ -784,7 +784,7 @@ const App = {
try {
const result = await this.apiCall('generateWebsite');
if (result.success) {
console.log('Generation started:', result.data.task_id);
this.startPolling();
}
} catch (error) {
@ -817,7 +817,7 @@ const App = {
} catch (error) {
console.error('Polling error:', error);
}
}, 10000);
}, 5000);
},
updateGenerationStatus(status) {
@ -886,3 +886,5 @@ const App = {
};
document.addEventListener('DOMContentLoaded', () => App.init());
App.init());