Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eric-guo/vali-admin-rails
Starting using vali-admin, an Free Bootstrap 4 Admin Template in Rails 5.2
https://github.com/eric-guo/vali-admin-rails
admin-dashboard bootstrap bootstrap4 rails template vali-admin
Last synced: 13 days ago
JSON representation
Starting using vali-admin, an Free Bootstrap 4 Admin Template in Rails 5.2
- Host: GitHub
- URL: https://github.com/eric-guo/vali-admin-rails
- Owner: Eric-Guo
- License: unlicense
- Created: 2018-06-17T01:13:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-07T09:55:50.000Z (11 months ago)
- Last Synced: 2024-01-07T10:50:42.081Z (11 months ago)
- Topics: admin-dashboard, bootstrap, bootstrap4, rails, template, vali-admin
- Language: Ruby
- Homepage:
- Size: 1.68 MB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![CircleCI](https://circleci.com/gh/Eric-Guo/vali-admin-rails.svg?style=svg)](https://circleci.com/gh/Eric-Guo/vali-admin-rails)
## Introduction
This project using the [Vali admin](https://pratikborsadiya.in/vali-admin/) as a frontend UI framework in a Rails 5.2 project (webpacker and stimulus enable).
PR welcome, but notice UI part should go to [Vali admin upsteam](https://github.com/pratikborsadiya/vali-admin/pulls) instead of here.
## Preinstall
```bash
brew install ruby
brew install node
brew install yarn
brew install postgresql
gem install bundler
echo 'gem: "--no-document"' >> ~/.gemrc
```## Regenerate master.key (skip if you have)
```bash
rm config/credentials.yml.enc
bin/rails credentials:edit
# copy secret_key_base line and paste as new line as devise_secret_key
```## Link the master.key (using above if you don't)
```bash
ln -s /Users/user_name/.ssh/harman_vendor_master.key config/master.key
```## Development prepare
```bash
bin/setup
```## Run test
```bash
bin/rake
```## Start development
```bash
bin/rails s
```