Admin Dashboard
⚡ Admin Mode
👥
Total Users
📄
Total Extractions
📁
Files Processed
💰
Paid Users
Free
Pro
Enterprise
Recent Signups
NameEmailPlanExtractionsJoined
Loading…
Recent File Activity
FilenameTypeWordsLanguageDate
Loading…
All Users
NameEmailPlanExtractionsCreatedActions
Loading…
File History (All Users)
FilenameTypeWordsLanguageUserDate
Loading…
🔑 Promote User to Admin

Enter the email address of the user you want to grant admin privileges. This action cannot be undone from the UI.

🛠 First-Time Setup

To make yourself an admin via Python shell:

from app import app
from models import db, User
with app.app_context():
    u = User.query.filter_by(email='you@example.com').first()
    u.is_admin = True
    db.session.commit()
    print('Done!')