mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 08:49:39 +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,35 +0,0 @@
|
|||
import PocketBase from 'pocketbase';
|
||||
|
||||
const pb = new PocketBase('http://127.0.0.1:8090');
|
||||
|
||||
async function test() {
|
||||
try {
|
||||
console.log('Testing connection to PocketBase...');
|
||||
|
||||
// Test 1: Get all users
|
||||
const users = await pb.collection('users').getList(1, 10);
|
||||
console.log('Found users:', users.items.length);
|
||||
users.items.forEach((u) => console.log(` - username: "${u.username}" (${u.email})`));
|
||||
|
||||
// Test 2: Find specific user
|
||||
const user = await pb.collection('users').getFirstListItem('username="memoro"');
|
||||
console.log('\nFound specific user:', user.username, user.id);
|
||||
|
||||
// Test 3: Get folders for user
|
||||
const folders = await pb.collection('folders').getList(1, 50, {
|
||||
filter: `user_id="${user.id}" && is_public=true`,
|
||||
});
|
||||
console.log('Public folders:', folders.items.length);
|
||||
|
||||
// Test 4: Get links for user
|
||||
const links = await pb.collection('links').getList(1, 100, {
|
||||
filter: `user_id="${user.id}" && is_active=true`,
|
||||
});
|
||||
console.log('Active links:', links.items.length);
|
||||
} catch (err) {
|
||||
console.error('Error:', err.message);
|
||||
console.error('Full error:', err);
|
||||
}
|
||||
}
|
||||
|
||||
test();
|
||||
Loading…
Add table
Add a link
Reference in a new issue