File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All enhancements and patches to Cookiecutter Django will be documented in this file.
3
3
4
+
5
+ ## [ 2020-09-24]
6
+ ### Changed
7
+ - Added a small script to install Postgresql 13 on Ubuntu - [ @luzfcb ] ( https://github.com/luzfcb )
8
+
4
9
## [ 2020-09-22]
5
10
### Changed
6
11
- Updated django-debug-toolbar to 3.1 - [ @luzfcb ] ( https://github.com/luzfcb )
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+
3
+ #
4
+ # Based on https://www.postgresql.org/download/linux/ubuntu/
5
+ #
6
+
7
+ sudo echo " " && wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - \
8
+ && sudo sh -c ' echo "deb [arch=amd64] http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' \
9
+ && sudo apt-get update \
10
+ && sudo apt-get install --yes postgresql-13 libpq-dev
You can’t perform that action at this time.
0 commit comments