Skip to content

Instantly share code, notes, and snippets.

@vinodMS
Created March 2, 2021 21:48
Show Gist options
  • Save vinodMS/4563cc1992bebba48d8997b0d70e6565 to your computer and use it in GitHub Desktop.
Save vinodMS/4563cc1992bebba48d8997b0d70e6565 to your computer and use it in GitHub Desktop.

Revisions

  1. Vinod Sudharshan created this gist Mar 2, 2021.
    6 changes: 6 additions & 0 deletions development_guide.text
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    Follow these steps prior to developing a new feature.

    1. git pull (on develop)
    2. git checkout -b feature/<name-of-feature> (create a new branch from develop. Replace name-of-feature with the feature you're working on, example feature/hello-world)
    3. python manage.py migrate && python manage.py collectstatic (run this inside the container)
    4. Access the website on the browser and make sure it's working.