A simple proof of concept implementation of plausible analytics made using django django rest framework and celery
create a python virtual environment and activate it
python -m venv venv
source venv/bin/activate # different step is required for windows os for activation of venvinstall the requirements file
pip install -r requirements.txtmake migrations and migrate
python manage.py makemigrations
python manage.py migrate start redis server
redis-server #different step is required for windows osstart celery worker
celery -A core worker -l info #different step is required for windows
run the development server
python manage.py runserver