integrating django and chartjs using channels package
=======================================================
- Clone the repository:
git clone https://github.com/sinasezza/django-chartjs.git
cd django-chartjs
- create a virtual environment & activate it(Optional):
macOs/Linux Users
python3 -m venv venv
source ./venv/bin/activate
Windows Users
python -m venv venv
venv\Scripts\activate
- Install dependencies:
pip install pip-tools
pip-sync requirements.txt
- make migrations
python manage.py makemigrations
python manage.py migrate
- run the http server
python manage.py runserver