Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maful/eci-rails
New Rails Template Application for your next amazing project
https://github.com/maful/eci-rails
boilerplate-template hacktoberfest rails
Last synced: 4 months ago
JSON representation
New Rails Template Application for your next amazing project
- Host: GitHub
- URL: https://github.com/maful/eci-rails
- Owner: maful
- License: mit
- Created: 2020-03-12T10:52:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T16:06:24.000Z (almost 2 years ago)
- Last Synced: 2024-10-23T13:36:58.566Z (4 months ago)
- Topics: boilerplate-template, hacktoberfest, rails
- Language: Ruby
- Homepage:
- Size: 45.9 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Eci Rails Template
Special thanks to [@excid3](https://github.com/excid3) (Creator of GoRails.com) for inspiring me to create this project.
> [Libur.run](https://github.com/maful/libur.run) - Empower Your HR with Next-Gen Open Source Self-Serve Platform
## Getting Started
👉 Eci requires Rails >= 6.0
#### Features
* Authentication
* Webpacker configuration by default
* [Tailwind CSS](https://tailwindcss.com/) as a CSS framework
* Included testing#### Roadmap
- [ ] Add OmniAuth
- [ ] Use Tailwind CSS components by default
- [x] Use Sidekiq for background processing
- [x] Integrate Devise to ActionCable Rails
- [x] Setup RSpec, FactoryBotRails, Faker and much more
- [ ] Setup Docker out of the box#### Creating a new amazing app 😍
If you prefer for using PostgreSQL as a database
```bash
rails new amazing_app -d postgresql -m https://raw.githubusercontent.com/maful/eci-rails/master/template.rb
```To run your app, use `foreman start`
#### Cleaning up 😢
```bash
rails db:drop
spring stop
cd ..
rm -rf amazing_app
```