0
0

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.

Minimal steps to deploy ActiveAdmin on Rails 4

Last updated at Posted at 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オープンチャットもご利用ください。

Twitter

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?