git clone git@github.com:p3dr0migue1/back_and_beyond.gitCreate an environment file named .env and add the following variables
DATABASE_URL=postgres://user:test@db:5432/backandbeyond
DEBUG=TrueBuild the image
docker-compose buildStart containers
docker-compose upRunning all tests
./manage.py testRunning specific test module
./manage.py test blog.tests.TestTags.test_creating_a_new_tag_in_popup_window_requires_a_tag_nameRunning one test case
./manage.py test test_views.