Explore >> Select a destination


You are here

ankane.org
| | citizen428.net
4.2 parsecs away

Travel
| | 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
4.9 parsecs away

Travel
| | This post will give a basic discussion on securing authentication tokens that can be used with Flask-Login.
| | stribny.name
8.6 parsecs away

Travel
| |
| | brunoscheufler.com
18.8 parsecs away

Travel
| 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....