mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-18 10:54:51 +03:00
Merge pull request #17 from cookiecutter/master
🛠 update to upstream release `2022.02.20`
This commit is contained in:
commit
06396c0e41
5
.github/contributors.json
vendored
5
.github/contributors.json
vendored
|
@ -1242,5 +1242,10 @@
|
||||||
"name": "ghazi-git",
|
"name": "ghazi-git",
|
||||||
"github_login": "ghazi-git",
|
"github_login": "ghazi-git",
|
||||||
"twitter_username": ""
|
"twitter_username": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Cebrail Yılmaz",
|
||||||
|
"github_login": "b1sar",
|
||||||
|
"twitter_username": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
|
@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
|
||||||
|
|
||||||
<!-- GENERATOR_PLACEHOLDER -->
|
<!-- GENERATOR_PLACEHOLDER -->
|
||||||
|
|
||||||
|
## 2022.02.20
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Fix incorrect createdb instruction in documentation ([#3606](https://github.com/cookiecutter/cookiecutter-django/pull/3606))
|
||||||
|
|
||||||
## 2022.02.16
|
## 2022.02.16
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -404,6 +404,13 @@ Listed in alphabetical order.
|
||||||
</td>
|
</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Cebrail Yılmaz</td>
|
||||||
|
<td>
|
||||||
|
<a href="https://github.com/b1sar">b1sar</a>
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Chao Yang Wu</td>
|
<td>Chao Yang Wu</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -47,7 +47,8 @@ Setup with PostgreSQL_
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
#. Create a new PostgreSQL database using createdb_: ::
|
#. Create a new PostgreSQL database using createdb_: ::
|
||||||
|
|
||||||
$ createdb <what you have entered as the project_slug at setup stage> -U postgres --password <password>
|
$ createdb --username=postgres <project_slug>
|
||||||
|
``project_slug`` is what you have entered as the project_slug at the setup stage.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
# We use calendar versioning
|
# We use calendar versioning
|
||||||
version = "2022.02.16"
|
version = "2022.02.20"
|
||||||
|
|
||||||
with open("README.rst") as readme_file:
|
with open("README.rst") as readme_file:
|
||||||
long_description = readme_file.read()
|
long_description = readme_file.read()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user