File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ v1.0.6] 2022-12-08
4
+ ### Changes
5
+
6
+ - OAuth via Github (stable)
7
+
3
8
## [ v1.0.5] 2022-11-13
4
9
### Improvements
5
10
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ Simple starter built with Python / Django Rest / Sqlite3 and JWT Auth. The authe
10
10
- ✅ ` Up-to-date dependencies `
11
11
- ✅ [ API Definition] ( https://docs.appseed.us/boilerplate-code/api-unified-definition ) - the unified API structure implemented by this server
12
12
- ✅ 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**
14
15
- ✅ Docker, Unitary tests
15
16
- 🚀 ` Instant Deploy ` on RENDER using [ Python Deployer] ( https://github.com/app-generator/deploy-automation-render )
16
17
- ` python.exe deployer.py django <THIS_REPO> `
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
4
4
DB_ENGINE=django.db.backends.sqlite3
5
5
DATABASE=db.sqlite3
6
6
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>
You can’t perform that action at this time.
0 commit comments