A starter template for building REST APIs in Django REST
- Integration with Django REST Framework
- User Management APIs
- JWT Authentication
- Added Django Debug Toolbar
- Integration with PostgreSQL and Redis
- Containerized using Docker and managed using docker compose.
This project is built on top of docker containers. So ensure that you have Docker and Docker Compose installed on your system.
For installation instructions refer: https://docs.docker.com/get-docker/
- Start the PostgreSQL and Redis server
docker-compose up -d db redis
- Start the complete project
docker-compose up
To run a command inside the docker container:
docker-compose run app sh -c "enter_your_command_here"