|
You are here |
hibbard.eu | ||
| | | | |
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... | |
| | | | |
www.adamalbrecht.com
|
|
| | | | | UPDATE: There have been some changes in the JWT Gem that make some of the below not work exactly right (it'll still be about 90% the same). Specifically, they added expiration support. See my post on the same topic, but using React.js. The server side code in this post will work just as well with Angular. | |
| | | | |
rubyroidlabs.com
|
|
| | | | | If you are not being careful about your application design at some point you will find yourself in a position where in order to add a new feature it's just easier to rebuild the whole project from the scratch. | |
| | | | |
damienbod.com
|
|
| | | This article shows how Azure Key Vault could be used together with Azure Functions. The Azure Functions can use the system assigned identity to access the Key Vault. This needs to be configured in the Key Vault access policies using the service principal. By using the Microsoft.Azure.KeyVault and the Microsoft.Extensions.Configuration.AzureKeyVault nuget packages, defining direct references... | ||