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 venv
install the requirements file
pip install -r requirements.txt
make migrations and migrate
python manage.py makemigrations
python manage.py migrate
start redis server
redis-server #different step is required for windows os
start celery worker
celery -A core worker -l info #different step is required for windows
run the development server
python manage.py runserver