mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 06:09:41 +02:00
chore: archive inactive projects to apps-archived/
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
b97149ac12
commit
61d181fbc2
3148 changed files with 437 additions and 46640 deletions
|
|
@ -1,54 +0,0 @@
|
|||
import PocketBase from 'pocketbase';
|
||||
|
||||
const pb = new PocketBase('http://localhost:8090');
|
||||
|
||||
// Test email - ersetze mit deiner E-Mail
|
||||
const testEmail = 'test@example.com'; // HIER DEINE EMAIL EINGEBEN!
|
||||
|
||||
async function testEmailFunctions() {
|
||||
console.log('🔧 Testing PocketBase Email Functions...\n');
|
||||
|
||||
try {
|
||||
// 1. Test Password Reset
|
||||
console.log('1️⃣ Testing Password Reset Email...');
|
||||
try {
|
||||
await pb.collection('users').requestPasswordReset(testEmail);
|
||||
console.log('✅ Password reset email request sent successfully');
|
||||
console.log(' Check your inbox for the password reset email\n');
|
||||
} catch (error) {
|
||||
console.error('❌ Password reset failed:', error.message);
|
||||
console.log(' Error details:', error.response?.data || error);
|
||||
}
|
||||
|
||||
// 2. Test Verification Email (needs existing unverified user)
|
||||
console.log('2️⃣ Testing Verification Email...');
|
||||
try {
|
||||
await pb.collection('users').requestVerification(testEmail);
|
||||
console.log('✅ Verification email request sent successfully');
|
||||
console.log(' Check your inbox for the verification email\n');
|
||||
} catch (error) {
|
||||
console.error('❌ Verification email failed:', error.message);
|
||||
console.log(' Error details:', error.response?.data || error);
|
||||
}
|
||||
|
||||
// 3. Check PocketBase health
|
||||
console.log('3️⃣ Checking PocketBase health...');
|
||||
try {
|
||||
const health = await pb.health.check();
|
||||
console.log('✅ PocketBase is healthy:', health);
|
||||
} catch (error) {
|
||||
console.error('❌ PocketBase health check failed:', error.message);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('❌ General error:', error);
|
||||
}
|
||||
|
||||
console.log('\n📌 Important checks:');
|
||||
console.log('1. Is PocketBase running? (http://localhost:8090)');
|
||||
console.log('2. Are SMTP settings configured in PocketBase?');
|
||||
console.log('3. Is the Application URL set in PocketBase settings?');
|
||||
console.log('4. Check PocketBase logs: Admin → Logs');
|
||||
}
|
||||
|
||||
// Run tests
|
||||
testEmailFunctions();
|
||||
Loading…
Add table
Add a link
Reference in a new issue