|
You are here |
ankane.org | ||
| | | | |
citizen428.net
|
|
| | | | | If you often create new Rails apps, application templates can be a real timesaver. They have a very simple API, which allows developers to make changes to the Gemfile, execute Rails or Git commands, manage files and more. Heres a simple template I use to generate a new Rails app with Devise already set up: gem 'devise' after_bundle do rails_command 'generate devise:install' rails_command 'generate devise User' end The first line adds Devise to the Gemfile and the after_bundle hook runs two generators pro... | |
| | | | |
gouthamanbalaraman.com
|
|
| | | | | This post will give a basic discussion on securing authentication tokens that can be used with Flask-Login. | |
| | | | |
stribny.name
|
|
| | | | | ||
| | | | |
brunoscheufler.com
|
|
| | | JSON Web Tokens are a popular way of managing authorization and authentication policies for web applications. Sending around a base64-encoded token that can be verified by every service using it, enables uncomplicated (and stateless) application design compared to other mechanisms.... | ||