Re: new to open source contribution

2019-11-29 Thread Website Technologies
Hi shruti, I am soon posting my django development tutorials from beginners to expert on my YouTube channel 'Backend to Frontend' . You'll definitely love it. Thanks On Fri, Nov 29, 2019, 18:45 Abhijeet Viswa wrote: > Hey, > > Checkout Django's "Contributing to Django" documentation here: > http

Re: new to open source contribution

2019-11-29 Thread Abhijeet Viswa
Hey, Checkout Django's "Contributing to Django" documentation here: https://docs.djangoproject.com/en/2.2/internals/contributing/ You can find a list of reported bugs and request feature updates on Django Trac here: https://code.djangoproject.com/ Django uses Git as a VCS. If you haven't used Dja

new to open source contribution

2019-11-29 Thread Shruti Satish
i am new to open source and would like to contribute. how do i setup for Django development? also can i be pointed towards easy and relativey easy bug fixes/issues and the corresponding repos? -- You received this message because you are subscribed to the Google Groups "Django developers (Co

new to contributing to open source

2019-11-29 Thread Shruti Satish
please point me to new and relatively easy bug fixes and also the corresponding repository. thanks. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails

Re: Add an --unapplied option for showmigrations

2019-11-29 Thread Adam Johnson
I think you want "manage.py migrate --plan" - new in Django 2.2 https://docs.djangoproject.com/en/2.2/ref/django-admin/#cmdoption-migrate-plan On Fri, 29 Nov 2019 at 10:59, Sky Christensen wrote: > I'd like to be able to easily see a list of only unapplied migrations. > > I often find myself swi

Add an --unapplied option for showmigrations

2019-11-29 Thread Sky Christensen
I'd like to be able to easily see a list of only unapplied migrations. I often find myself switching to a new branch and wanting to quickly find out whether it contains any migrations that are yet to be applied to my development database, and what they are. At the moment I use a plain `./mana