🖥

Minimal steps to deploy ActiveAdmin on Rails 4

2019/04/16に公開

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

About this translattion

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2019-04-16

Discussion