How to start contributing?

2022-03-03 Thread Sarthak Kinge
Hi I've started reading tutorials but I'm not able to contribute in any 
particular project what should I do?

-- 
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 from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/4cb791a4-bcec-42b3-9420-05326ac900dcn%40googlegroups.com.


DATABASE_URL not documented?

2022-03-03 Thread Sam
Hi!
While reading* Getting Started on Heroku with Python 

 
(Provision a database)*, they are talking about *DATABASE_URL* as if it was 
something which is implemented in Django by default.
As far as I know the *DATABASE_URL *is some kind of alias to access the 
*default 
*of *DATABASES *(?). 

However I don't find any documentation about it.
When I search for *site:djangoproject.com "database_url"* 
*,
 
*I mostly find forum posts discussing issues where DATABASE_URL is included.
I found ticket #28236  which 
suggests integrating dj-database-url into Django, which talks about the 
"DATABASE_URL environment variable".
The ticket is not solved after five years.

As you see, I am quite confused what *DATABASE_URL* actually is, since it 
seems considered common sense (or at least common use).
And therefore I'd suggest to mention it somewhere in the Django Docs.
Does it make sense?

I've expected to find it somewhere in the settings reference 
.

Kind regards,
Sam

-- 
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 from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/3b05c53f-b3a6-4220-aa84-182cd5cea97bn%40googlegroups.com.


Re: DATABASE_URL not documented?

2022-03-03 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
No it's not built in to Django, it's only supported via dj-database-url.
The Heroku docs could be improved. They seem to make a passing mention
here:
https://devcenter.heroku.com/articles/python-concurrency-and-database-connections
.

On Thu, Mar 3, 2022 at 8:07 AM Sam  wrote:

> Hi!
> While reading* Getting Started on Heroku with Python
> 
> (Provision a database)*, they are talking about *DATABASE_URL* as if it
> was something which is implemented in Django by default.
> As far as I know the *DATABASE_URL *is some kind of alias to access the 
> *default
> *of *DATABASES *(?).
>
> However I don't find any documentation about it.
> When I search for *site:djangoproject.com "database_url"*
> *,
> *I mostly find forum posts discussing issues where DATABASE_URL is
> included.
> I found ticket #28236  which
> suggests integrating dj-database-url into Django, which talks about the
> "DATABASE_URL environment variable".
> The ticket is not solved after five years.
>
> As you see, I am quite confused what *DATABASE_URL* actually is, since it
> seems considered common sense (or at least common use).
> And therefore I'd suggest to mention it somewhere in the Django Docs.
> Does it make sense?
>
> I've expected to find it somewhere in the settings reference
> .
>
> Kind regards,
> Sam
>
> --
> 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 from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/3b05c53f-b3a6-4220-aa84-182cd5cea97bn%40googlegroups.com
> 
> .
>

-- 
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 from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAMyDDM3JTeM2wE%2Bzms1j9XhZXkjXCvWzm8_Ca_XzGYZOHWST8g%40mail.gmail.com.


Re: How to start contributing?

2022-03-03 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Welcome!

There are many different ways to contribute to Django - the forum,
blogging, translating, documenting, writing code, and more. Our
Contributing Guide can help you get started with many of these:
https://docs.djangoproject.com/en/stable/internals/contributing/

If you’re looking to work with the code base (for documentation or code),
check out the “Advice for New Contributors” section:
https://docs.djangoproject.com/en/stable/internals/contributing/new-contributors/
. Then see if you can work through the “Writing Your First Patch” tutorial:
https://docs.djangoproject.com/en/stable/intro/contributing/ .

If you get stuck or have questions, post back here or in the “Mentorship”
section on the forum:
https://forum.djangoproject.com/c/internals/mentorship/10

Hope that helps,

Adam

On Thu, Mar 3, 2022 at 3:23 AM Sarthak Kinge 
wrote:

> Hi I've started reading tutorials but I'm not able to contribute in any
> particular project what should I do?
>
> --
> 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 from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/4cb791a4-bcec-42b3-9420-05326ac900dcn%40googlegroups.com
> 
> .
>

-- 
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 from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAMyDDM2vnedM5fdnLsgsVQeFzCYBr%3DWCavvH%2BTTZ0eCpZ53b-g%40mail.gmail.com.


Re: DATABASE_URL not documented?

2022-03-03 Thread Sam
Thank you for the quick response.

Adam Johnson schrieb am Donnerstag, 3. März 2022 um 14:44:01 UTC+1:

> No it's not built in to Django, it's only supported via dj-database-url. 
> The Heroku docs could be improved. They seem to make a passing mention 
> here: 
> https://devcenter.heroku.com/articles/python-concurrency-and-database-connections
>  
> .
>
> On Thu, Mar 3, 2022 at 8:07 AM Sam  wrote:
>
>> Hi!
>> While reading* Getting Started on Heroku with Python 
>> 
>>  
>> (Provision a database)*, they are talking about *DATABASE_URL* as if it 
>> was something which is implemented in Django by default.
>> As far as I know the *DATABASE_URL *is some kind of alias to access the 
>> *default 
>> *of *DATABASES *(?). 
>>
>> However I don't find any documentation about it.
>> When I search for *site:djangoproject.com "database_url"* 
>> *,
>>  
>> *I mostly find forum posts discussing issues where DATABASE_URL is 
>> included.
>> I found ticket #28236  which 
>> suggests integrating dj-database-url into Django, which talks about the 
>> "DATABASE_URL environment variable".
>> The ticket is not solved after five years.
>>
>> As you see, I am quite confused what *DATABASE_URL* actually is, since 
>> it seems considered common sense (or at least common use).
>> And therefore I'd suggest to mention it somewhere in the Django Docs.
>> Does it make sense?
>>
>> I've expected to find it somewhere in the settings reference 
>> .
>>
>> Kind regards,
>> Sam
>>
>> -- 
>> 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 from it, send an 
>> email to django-develop...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-developers/3b05c53f-b3a6-4220-aa84-182cd5cea97bn%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/bb655416-c552-4fad-a71b-5fc6c6f2068cn%40googlegroups.com.