Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yshmarov/doesmystartupideasuck
Innovation incubation/Ideation platform. Share & discuss ideas. Vote for the best ones
https://github.com/yshmarov/doesmystartupideasuck
bootstrap devise facebook-oauth2 haml pundit rails reddit ruby ruby-on-rails startup
Last synced: 2 months ago
JSON representation
Innovation incubation/Ideation platform. Share & discuss ideas. Vote for the best ones
- Host: GitHub
- URL: https://github.com/yshmarov/doesmystartupideasuck
- Owner: yshmarov
- License: unlicense
- Archived: true
- Created: 2018-05-15T12:29:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-24T18:01:56.000Z (over 4 years ago)
- Last Synced: 2024-08-04T08:01:29.536Z (6 months ago)
- Topics: bootstrap, devise, facebook-oauth2, haml, pundit, rails, reddit, ruby, ruby-on-rails, startup
- Language: Ruby
- Homepage: https://doesmystartupideasuck.herokuapp.com/
- Size: 459 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Open-Source-Ruby-and-Rails-Apps - doesmystartupideasuck - Innovation incubation/Ideation platform. Share & discuss ideas. Vote for the best ones 🔥 ✅ 🚀 (Happy Exploring 🤘)
README
git push heroku master
heroku run rake db:migratepg_restore --verbose --clean --no-acl --no-owner -h localhost -d doesmystartupideasuck_development latest.dump
User.find_each { |user| User.reset_counters(user.id, :ideas) }
User.find_each { |user| User.reset_counters(user.id, :cofounders) }
User.find_each { |user| User.reset_counters(user.id, :favorites) }
Tag.find_each { |tag| Tag.reset_counters(tag.id, :idea_tags) }
User.find_each {|m| m.update_attributes(updated_at: Time.now)}pg_restore --verbose --clean --no-acl --no-owner -h localhost -U ubuntu -d doesmystartupideasuck_development latest.dump
Idea.find(60).update_attributes!(user_id: "20")doesmystartupideasuck.com
doesmystartupsuck.com
share. validate. discover.#video what is DMSIS?
#video I will steal your startup idea
#video Will you steal my startup idea?#not allow "." in idea.name
#characters left#similar project links
#attachements#cards DONE
#facebook login DONE
#like on facebook
#share on facebook
#homepage DONE
#sidebar stats DONE
#my likes XXX
#my cofoundery XXX
#elasticsearch XXX
#pundit XXX
#devise soft delete#fresh DONE
#top liked DONEBasic functions:
1) sign in with google or facebook
2) submit idea (post)
3) see all posts
4) vote for posts except of yours
5) comment posts
6) text search for postsTechnologies:
postgresql
haml
bootstrap 4
simple_form
deviseoauth - fb/google
acts_as_votable
ransack
pundit for rolesgem 'haml-rails'
gem 'haml'
gem 'autoprefixer-rails'
gem 'bootstrap', '~> 4.1.1'
gem 'simple_form'gem "pundit"
gem 'devise'
gem 'devise-bootstrap-views'
gem "rolify"rails new doesmystartupideasuck --database=postgresql
rails g scaffold idea name:string description:text user:references --no-stylesheets
rails g scaffold comment body idea:references user:references