{% extends "base.html" %} {% block title %}Dashboard - Talk2Me Admin{% endblock %} {% block content %}
System Status

Online

Talk2Me API is running
Admin Access

Authenticated

You are logged in as admin
Services

Redis: Not configured
PostgreSQL: Not configured

Available Actions

In simple mode, you can:

To enable full features, set up the following services:

  1. Redis: For caching, rate limiting, and session management
  2. PostgreSQL: For persistent storage of analytics and user data
Quick Setup Guide
1. Install Redis:
# Ubuntu/Debian
sudo apt-get install redis-server
sudo systemctl start redis

# macOS
brew install redis
brew services start redis
2. Install PostgreSQL:
# Ubuntu/Debian
sudo apt-get install postgresql
sudo systemctl start postgresql

# macOS
brew install postgresql
brew services start postgresql
3. Configure Environment:
# Add to .env file
REDIS_URL=redis://localhost:6379/0
DATABASE_URL=postgresql://user:pass@localhost/talk2me
4. Initialize Database:
python init_auth_db.py

After completing these steps, restart the Talk2Me server to enable full admin features.

{% endblock %} {% block scripts %} {% endblock %}