https://github.com/neo4jrb/devise_with_twitter
An example Rails application using devise to authenticate users with Twitter and Neo4j
https://github.com/neo4jrb/devise_with_twitter
Last synced: about 2 months ago
JSON representation
An example Rails application using devise to authenticate users with Twitter and Neo4j
- Host: GitHub
- URL: https://github.com/neo4jrb/devise_with_twitter
- Owner: neo4jrb
- Created: 2015-04-13T08:53:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-15T16:35:31.000Z (almost 10 years ago)
- Last Synced: 2025-01-12T09:29:05.728Z (3 months ago)
- Language: Ruby
- Size: 145 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
Awesome Lists containing this project
README
==
== Setup:
=== Update `config/initializers/devise.rb`
* `config.mailer_sender`
=== Make sure your mailer is configured:
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
=== If you are deploying on Heroku with Rails 3.2 only, you may want to set:
config.assets.initialize_on_precompile = false
On `config/application.rb` forcing your application to not access the DB or load models when precompiling your assets.
=== You can copy Devise views (for customization) to your app by running
rails g devise:views