Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 764 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 764 Bytes

Jamma

A simple proof of concept implementation of plausible analytics made using django django rest framework and celery

How to Setup the Project

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