Skip to content

Commit aaa4339

Browse files
committed
update and support package2
1 parent c1b600e commit aaa4339

25 files changed

Lines changed: 92 additions & 329 deletions

.DS_Store

6 KB
Binary file not shown.

00-Starter-Seed/.DS_Store

6 KB
Binary file not shown.

00-Starter-Seed/.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
AUTH0_CLIENT_ID={CLIENT_ID}
2+
AUTH0_DOMAIN={DOMAIN}
3+
AUTH0_SECRET={CLIENT_SECRET}
4+
AUTH0_CALLBACK_URL={CALLBACK_URL}

00-Starter-Seed/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Auth0 Python Web App Sample
2+
3+
This sample demonstrates how to add authentication to a Python web app using Auth0.
4+
5+
# Running the App
6+
7+
To run the sample, make sure you have `python` and `pip` installed.
8+
9+
Rename `.env.example` to `.env` and populate it with the client ID, domain, and secret for your Auth0 app.
10+
11+
Run `pip install -r requirements.txt` to install the dependencies and run `python server.py`. The app will be served at [http://localhost:3000/](http://localhost:3000/).
12+
13+
## What is Auth0?
14+
15+
Auth0 helps you to:
16+
17+
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, among others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
18+
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
19+
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
20+
* Support for generating signed [JSON Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
21+
* Analytics of how, when and where users are logging in.
22+
* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).
23+
24+
## Create a free account in Auth0
25+
26+
1. Go to [Auth0](https://auth0.com) and click Sign Up.
27+
2. Use Google, GitHub or Microsoft Account to login.
28+
29+
## Issue Reporting
30+
31+
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/whitehat) details the procedure for disclosing security issues.
32+
33+
## Author
34+
35+
[Auth0](auth0.com)
36+
37+
## License
38+
39+
This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.
40+
41+

00-Starter-Seed/flask-api/README.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

00-Starter-Seed/flask-api/requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

00-Starter-Seed/flask-api/server.py

Lines changed: 0 additions & 79 deletions
This file was deleted.

00-Starter-Seed/flask-webapp/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)