{% extends "base.html" %} {% block title %}Dashboard - Talk2Me Admin{% endblock %} {% block content %}
The admin dashboard is running in simple mode because Redis and PostgreSQL services are not available.
To enable full analytics and monitoring features, please ensure Redis and PostgreSQL are running.
Online
Talk2Me API is runningAuthenticated
You are logged in as admin
Redis: Not configured
PostgreSQL: Not configured
In simple mode, you can:
To enable full features, set up the following services:
# Ubuntu/Debian
sudo apt-get install redis-server
sudo systemctl start redis
# macOS
brew install redis
brew services start redis
# Ubuntu/Debian
sudo apt-get install postgresql
sudo systemctl start postgresql
# macOS
brew install postgresql
brew services start postgresql
# Add to .env file
REDIS_URL=redis://localhost:6379/0
DATABASE_URL=postgresql://user:pass@localhost/talk2me
python init_auth_db.py
After completing these steps, restart the Talk2Me server to enable full admin features.