2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails devise】Deviseの実装周りのあれこれ

Last updated at Posted at 2020-02-26

Deviseの実装周りのあれこれ

1.Gemのインストール

Gemfile
gem 'devise'
command
bundle install

2.deviseファイルの生成

command
rails g devise:install

3.deviseのビューファイルの生成

command
rails g devise:views

4.deviseのモデルの生成

command
rails g devise User(ここは任意です!Adminとかでもおけです)

5.deviseのテーブルの生成

command
rails db:migrate

参考:
https://github.com/heartcombo/devise

以上!

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?