https://github.com/riajulkashem/django-ajax-datatables
This is an example project to Django Datatables Server side pagination, ordering and search enabled
https://github.com/riajulkashem/django-ajax-datatables
datatables django django-datatables-serverside django-rest-framework docker docker-compose python
Last synced: 2 months ago
JSON representation
This is an example project to Django Datatables Server side pagination, ordering and search enabled
- Host: GitHub
- URL: https://github.com/riajulkashem/django-ajax-datatables
- Owner: riajulkashem
- Created: 2021-04-28T17:32:10.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-30T13:40:29.000Z (about 5 years ago)
- Last Synced: 2025-08-18T18:37:26.306Z (11 months ago)
- Topics: datatables, django, django-datatables-serverside, django-rest-framework, docker, docker-compose, python
- Language: Python
- Homepage:
- Size: 185 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Datatables Serverside
[](https://python.org)
[](https://djangoproject.com)
This is an example project to Django Datatables Server side **pagination, ordering and search** enabled


## Running the Project Locally
First, clone the repository to your local machine:
```bash
git clone https://github.com/RiajulKashem/sapience-trio.git
```
Copy .env.example to .env
```bash
cp .env.example sapience_trio/.env
```
Build docker images
```bash
docker-compose build
```
Start services
```bash
docker-compose up -d --build
```
View Docker log
```bash
docker-compose logs -f
```
Load Fixtures
```bash
docker-compose run web python manage.py loaddata cart/fixtures/item.json
docker-compose run web python manage.py loaddata cart/fixtures/order.json
docker-compose run web python manage.py loaddata cart/fixtures/order_item.json
```