Installation
#
Requirements- Ruby >= 2.7
- Rails >= 6.0
- ActiveAdmin ~> 2.9
- Bootstrap ~> 5.1.3
- Webpacker ~> 5.0
#
Quick StartAdd the following to your application's
Gemfile
:Gemfilegem "adminterface"
Then execute:
$ bundle install
Install ActiveAdmin (If you haven't installed it yet)
$ rails g active_admin:install --use_webpacker
Run the Install Generator
caution
This command will ask for permissions to overwrite files generated by ActiveAdmin. Make sure to review the files carefully and accept them. We recommend you commit your files before running this command to ensure you are aware of the changes made.
$ rails g adminterface:install
Migrate your database and start the server
$ rails db:migrate$ rails server
If you're having issues installing, please visit our support page for ways to get help or submitting issues.