Creating APIs with django using Test Driven Development (TDD)
Read env.template for dotenv configuration
$ python manage.py test && flake8If you get following error:
Got an error creating the test database: permission denied to create database
Then change permission to your postgres database user by executing following commandalter role djangouser createdb;.
Or you can use default sqlite database.