Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanckulp/reddit
https://github.com/ryanckulp/reddit
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryanckulp/reddit
- Owner: ryanckulp
- Created: 2015-09-27T11:14:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-01T13:11:55.000Z (over 9 years ago)
- Last Synced: 2024-11-08T22:49:32.431Z (about 2 months ago)
- Language: Ruby
- Homepage: http://beforereddit.com
- Size: 211 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Speedrail
Setting up new Rails apps is slow and tedious. Speedrail is a boilerplate rails template to get started faster.Libraries included in this boilerplate rails app:
* User authentication via [Devise](https://github.com/plataformatec/devise)
* Design via [Bootstrap](http://getbootstrap.com) + [Sass](https://github.com/twbs/bootstrap-sass)
* Easy user inputs with [simple_form](https://github.com/plataformatec/simple_form)
* Security for ENV variables with [Figaro](https://github.com/laserlemon/figaro)
* Responsive toggle navbar w/ logic for login, signup, settings
* Upload-free user avatars with [gravatarify](https://github.com/lwe/gravatarify)
* SEO toolbelt via [metamagic](https://github.com/lassebunk/metamagic)
* Increased debugging power with [Pry](https://github.com/pry/pry) and [Better Errors](https://github.com/charliesome/better_errors)
* Document upload management via [Paperclip](https://github.com/thoughtbot/paperclip) + [S3](https://github.com/aws/aws-sdk-ruby)
* Seed your DB in seconds via [Seed Dump](https://github.com/rroblak/seed_dump)
* Production-ready DB setup via postgres## Installation
1. Clone the repo
2. Replace the database names in config/database.yml with your app name
3. Uncomment the application.yml line in .gitignore to hide ENV variables
4. See the top of layout/app and pages/home to set page titles and descriptions## Additional Options
1. Configure AWS S3 in config/application.rb. Mind the host name, yours may be different.
2. New Reg/Sessions controllers override Devise, prepend 'super' to custom action logic