https://github.com/gmaze/flask-template-login
Authentication with Flask-Login
https://github.com/gmaze/flask-template-login
flask login template
Last synced: about 1 year ago
JSON representation
Authentication with Flask-Login
- Host: GitHub
- URL: https://github.com/gmaze/flask-template-login
- Owner: gmaze
- License: mit
- Created: 2023-11-20T09:58:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T10:08:21.000Z (over 2 years ago)
- Last Synced: 2024-06-11T16:42:16.307Z (about 2 years ago)
- Topics: flask, login, template
- Language: HTML
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask-app template: Authentication with Flask-Login
Largely inspired by https://www.digitalocean.com/community/tutorials/how-to-add-authentication-to-your-app-with-flask-login with bug fixes
# Installation
```bash
mamba env create -f environment.yml
```
```python
from webapp import db, create_app, models
app = create_app()
with app.app_context():
db.create_all()
```
```bash
flask --app webapp routes
flask --app webapp run
```