Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eric-guo/coreui4-rails-starter
The CoreUI 4 Rails starter
https://github.com/eric-guo/coreui4-rails-starter
coreui rails template
Last synced: 2 months ago
JSON representation
The CoreUI 4 Rails starter
- Host: GitHub
- URL: https://github.com/eric-guo/coreui4-rails-starter
- Owner: Eric-Guo
- License: mit
- Created: 2023-08-19T06:41:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T13:33:19.000Z (3 months ago)
- Last Synced: 2024-10-29T16:07:21.425Z (3 months ago)
- Topics: coreui, rails, template
- Language: Ruby
- Homepage: https://starter.redwoodjs.cn
- Size: 2.37 MB
- Stars: 12
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The CoreUI 4 Rails Starter Template
[![Build Status](https://github.com/Eric-Guo/coreui4-rails-starter/actions/workflows/rubyonrails.yml/badge.svg)](https://github.com/Eric-Guo/coreui4-rails-starter/actions)
## Development notes
### When you want to debug the SCSS
Set `shakapacker.yml` hmr to true.
```yml
hmr: true
```### Why should always include "stimulus"
Because using webpack 5, the loading sequence do matter.
### How to debug in VSCode?
Install `Ruby LSP` by Shopify and `VSCode rdbg Ruby Debugger` by KoichiSasada.
Make sure debug only having one version install as default gems, otherwise uninstall first:
```bash
gem uninstall -i /opt/homebrew/Cellar/ruby/3.2.2/lib/ruby/gems/3.2.0 debug
gem install debug --default
```