https://github.com/nishi1/customized-rails-admin
Custom Rails Admin
https://github.com/nishi1/customized-rails-admin
rails-admin rails5 ruby ruby-on-rails
Last synced: 6 months ago
JSON representation
Custom Rails Admin
- Host: GitHub
- URL: https://github.com/nishi1/customized-rails-admin
- Owner: Nishi1
- Created: 2020-02-27T10:02:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-29T10:05:46.000Z (about 6 years ago)
- Last Synced: 2025-04-07T09:45:24.561Z (about 1 year ago)
- Topics: rails-admin, rails5, ruby, ruby-on-rails
- Language: JavaScript
- Homepage:
- Size: 6.45 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Customized Rails Admin
This app is used to walk developers through the basic Rails Authentication using devise and CRUD operation for admin portal.
## Demo

# Technologies
- Rails
- Mysql
Project revisions are managed in **customized-rails-admin** repository on private server with [GIT]( https://github.com/Nishi1/customized-rails-admin.git )
### Installation
Customized Rails Admin requires [Ruby](https://www.ruby-lang.org/en/documentation/installation/) v2.4.0 and Rails 5.2.3 or higher to run.
```
Clone the git repository and install packages.
$ git clone "https://github.com/Nishi1/customized-rails-admin.git"
$ cd customized-rails-admin
$ bundle install
```
Setup database and start the rails.
```
$ rake db:create
$ rake db:migrate
$ rake db:seed
$ rails s
```
Now open your browser and navigate to:
```
localhost:3000 for public access
localhost:3000/admin/sign_in for admin access & login using the admin account that is by default
created using seed file.
Use the following credentials for admin login:
username: admin@example.com
password: 123456
```