An open, fan-curated wrestling database and platform — inspired by TMDB and IMDB.
Website: https://wrestlingdb.org
- Django 5.2+ web application with PostgreSQL
- Redis caching and Celery background tasks
- REST API with JWT authentication and rate limiting
- Dark mode responsive interface
- Docker Compose for easy deployment
| Component | Technology |
|---|---|
| Backend | Django 5.2+, Django REST Framework |
| Database | PostgreSQL 15+ |
| Cache | Redis 7+ |
| Task Queue | Celery 5.5+ with Beat scheduler |
| Web Server | Gunicorn + Traefik |
| Containerization | Docker & Docker Compose |
git clone https://github.com/ericrosenberg1/OWDB.git
cd OWDB
cp .env.example .env
docker-compose up --build
# Access at http://localhost:8000python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver# Get JWT token
curl -X POST https://wrestlingdb.org/api/token/ \
-H "Content-Type: application/json" \
-d '{"username": "user", "password": "pass"}'
# Use token
curl https://wrestlingdb.org/api/wrestlers/ \
-H "Authorization: Bearer YOUR_TOKEN"| Tier | Requests/Hour |
|---|---|
| Free | 100 |
| Authenticated | 1,000 |
| Paid | 10,000 |
- Ubuntu 22.04+ or similar
- PostgreSQL 15+
- Redis 7+
- Python 3.11+
ssh root@wrestlingdb.org
cd /home/wrestlingdb
git pull origin main
./venv/bin/python -m pip install -r requirements.txt
./venv/bin/python manage.py migrate
./venv/bin/python manage.py collectstatic --noinput
sudo systemctl restart wrestlingdb# Check status
sudo systemctl status wrestlingdb
# View logs
sudo journalctl -u wrestlingdb -f
# Restart
sudo systemctl restart wrestlingdb- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
MIT License - see LICENSE for details.
The Open Wrestling Database
wrestlingdb.org