Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 618 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 618 Bytes

Kronolog Backend

The backend for 'Kronolog': the web app for collecting voice data for BUET CSE Fest 2022 Deep Learning Sprint Competition. See more: buetcsefest2022.com/dlsprint

Resources

  • Heroku Dyno
  • Heroku Hobby PostgreSQL (10,000 rows limit)

Important Notes

Clearing Database Entries

In order to clear django_admin_log entries from database, open the python shell from cloud provider.

python manage.py shell

Then enter the following lines of code:

from django.contrib.admin.models import LogEntry
LogEntry.objects.all().delete()

Exit the shell and terminal. It'll be gone.