Skip to content

Commit 405a1fc

Browse files
committed
Release v1.0.6 - Added OAuth for GitHub
1 parent 653900f commit 405a1fc

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [v1.0.6] 2022-12-08
4+
### Changes
5+
6+
- OAuth via Github (stable)
7+
38
## [v1.0.5] 2022-11-13
49
### Improvements
510

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Simple starter built with Python / Django Rest / Sqlite3 and JWT Auth. The authe
1010
-`Up-to-date dependencies`
1111
-[API Definition](https://docs.appseed.us/boilerplate-code/api-unified-definition) - the unified API structure implemented by this server
1212
- ✅ Django / DRF / SQLite3 - a simple, easy to use backend
13-
- ✅ Authentication with JWT (login, logout, register)
13+
-`JWT Authentication` (login, logout, register)
14+
-`OAuth` via **Github**
1415
- ✅ Docker, Unitary tests
1516
- 🚀 `Instant Deploy` on RENDER using [Python Deployer](https://github.com/app-generator/deploy-automation-render)
1617
- `python.exe deployer.py django <THIS_REPO>`

env.sample

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
44
DB_ENGINE=django.db.backends.sqlite3
55
DATABASE=db.sqlite3
66

7-
GITHUB_CLIENT_ID=
8-
GITHUB_SECRET_KEY=
7+
# Same as for React APP
8+
GITHUB_OAUTH_CLIENT_ID = <GITHUB-CLIENT_ID-HERE>
9+
GITHUB_OAUTH_CLIENT_SECRET = <GITHUB-Secret-HERE>

0 commit comments

Comments
 (0)