Flask JWT Auth
Want to learn how to build this project?
Check out the blog post.
Want to use this project?
Basics
- Fork/Clone
- Activate a virtualenv
- Install the requirements
Set Environment Variables
Update project/server/config.py, and then run:
$ export APP_SETTINGS="project.server.config.DevelopmentConfig"or
$ export APP_SETTINGS="project.server.config.ProductionConfig"Set a SECRET_KEY:
$ export SECRET_KEY="change_me"Create DB
Create the databases in psql:
$ psql
# create database flask_jwt_auth
# create database flask_jwt_auth_test
# \qCreate the tables and run the migrations:
$ python manage.py create_db
$ python manage.py db init
$ python manage.py db migrateRun the Application
$ python manage.py runserverAccess the application at the address http://localhost:5000/
Want to specify a different port?
$ python manage.py runserver -h 0.0.0.0 -p 8080
Testing
Without coverage:
$ python manage.py testWith coverage:
$ python manage.py cov