Skip to content

Instantly share code, notes, and snippets.

View Tynik's full-sized avatar
🎯
Focusing

Mykhailo Aliinyk Tynik

🎯
Focusing
View GitHub Profile
@Tynik
Tynik / code-review.md
Created January 27, 2021 10:12 — forked from ArthurArslanaliev/code-review.md
code review checklist

Code review checklist

  1. Checkout target branch to your local environment.

  2. Try to run the project from that revision. Ideally, you should start an application from scratch to reset any cached state on your local machine (for example - cached Celery modules). In the case of the Docker-based local environment, I would recommend to:

    • stop all containers: docker stop $(docker ps -a -q)
    • remove all containers: docker rm $(docker ps -a -q)
    • remove all images: docker rmi $(docker images -q)