DRF project for creating random users using external API with docker, JWT auth, swagger docs and unittests
To run this project, run following command:
$ docker-compose build --no-cache
In case of any problems try:
$ docker-compose up -d --force-recreate
In order to run migrations:
$ docker-compose exec app python manage.py migrate
To create super user in a running container:
$ docker-compose exec app python manage.py createsuperuser
To run unittest
$ docker-compose exec app python manape.py test
When container is running, documentation generated by swagger is available here.