🖥
Minimal steps to deploy ActiveAdmin on Rails 4
Create a Rails Project
$ rails new project_name
Insert the Gem
+ gem 'devise' + gem 'activeadmin', github: 'activeadmin'
$ bundle install
Install ActiveAdmin on Rails
$ bundle exec rails generate active_admin:install
Perform the migration
$ bundle exec rake db:migrate
Create an initial user
$ bundle exec rake db:seed
Start the Rails server
$ bundle exec rails server
Access from browser
http: // localhost: 3000 / admin /
log in
Email address admin@example.com password password
Operating environment
- Rails 4.2.4
- ruby 2.2.3
- Bundler version 1.10.6
Original by
Rails4 に ActiveAdmin を導入するための最小手順
About
チャットメンバー募集
何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。
公開日時
2019-04-16
Discussion