{"id":20410996,"url":"https://github.com/omkz/coolpics","last_synced_at":"2026-04-07T23:31:39.199Z","repository":{"id":26206555,"uuid":"150591292","full_name":"omkz/coolpics","owner":"omkz","description":"Coolpics is an open source platform for creating photo-sharing site.","archived":false,"fork":false,"pushed_at":"2023-01-19T11:20:39.000Z","size":4112,"stargazers_count":3,"open_issues_count":30,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-05T03:15:58.299Z","etag":null,"topics":["9gag","jquery","postgresql","ruby","ruby-on-rails","twitter-bootstrap"],"latest_commit_sha":null,"homepage":"https://coolpics.herokuapp.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/omkz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-27T13:28:33.000Z","updated_at":"2024-07-25T09:29:09.000Z","dependencies_parsed_at":"2023-02-10T23:15:26.691Z","dependency_job_id":null,"html_url":"https://github.com/omkz/coolpics","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/omkz/coolpics","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omkz%2Fcoolpics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omkz%2Fcoolpics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omkz%2Fcoolpics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omkz%2Fcoolpics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omkz","download_url":"https://codeload.github.com/omkz/coolpics/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omkz%2Fcoolpics/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31533823,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["9gag","jquery","postgresql","ruby","ruby-on-rails","twitter-bootstrap"],"created_at":"2024-11-15T05:49:16.447Z","updated_at":"2026-04-07T23:31:39.181Z","avatar_url":"https://github.com/omkz.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Coolpics!\n\nCoolpics is an open source platform for creating photo-sharing site that allows its users to share pictures on the app, as well as through a variety of other social networking platforms, such as Facebook, Twitter, Tumblr, and etc.\nIt's like 9gag.com :)\n\n![Coolpics! Screenshot](https://raw.githubusercontent.com/omkz/coolpics/master/public/screenshot.png)\n\n## Tech Stack\n\n- Ruby 2.7.1  \n- Ruby on Rails 6.0.3  \n- PostgreSQL 9.5\n- jQuery\n- Twitter Bootstrap 3\n- Gem: \n    -  [devise](https://github.com/plataformatec/devise) | Authentication\n    -  [pg](https://github.com/ged/ruby-pg) | PostgreSQL library for Ruby\n    -  [carrierwave](https://github.com/carrierwaveuploader/carrierwave) | Image upload management\n\n## Installation\n\n### Requirements\n\nBefore you get started, the following needs to be installed:\n  * **Ruby**. Version 2.7.1 is currently used and we don't guarantee everything works with other versions. If you need multiple versions of Ruby, [rbenv](https://rbenv.org) is recommended.\n  * [**RubyGems**](http://rubygems.org/)\n  * **Bundler**: `gem install bundler`\n  * [**Git**](http://help.github.com/git-installation-redirect)\n  * **A database**. Only PostgreSQL 9.5 has been tested, so we give no guarantees that other databases (e.g. MySQL) work. If you're using OS X and have Homebrew installed, install it with `brew install postgresql`\n  * [**Redis**](http://redis.io). Version 4.0.9 has been used successfully, but newer versions should work as well. If you're using OS X and have Homebrew installed, install it with `brew install redis`\n  * [**elasticsearch**] (https://www.elastic.co/products/elasticsearch). If you're using OS X and have Homebrew installed, install it with `brew install elasticsearch`\n  * [**Imagemagick**](http://www.imagemagick.org). If you're using OS X and have Homebrew installed, install it with `brew install imagemagick`\n  \n### Setting up the development environment\n\n1. Get the code. Clone this git repository:\n\n  ```bash\n  git clone git://github.com/omkz/coolpics.git\n  cd coolpics\n  ```\n\n1. Install the required gems by running the following command in the project root directory:\n\n  ```bash\n  bundle install\n  ```\n\n1. Create and initialize the database:\n\n  ```bash\n  bundle exec rake db:migrate\n  ```\n\n1. Start the development server:\n\n  ```bash\n  rails s\n  ```\n### Setting up the development environment using Docker (BETA)\n\nOur docker implementation is incomplete and may not work smoothly. Please kindly report any issues and any contribution is welcomed!\n\n1. Install `docker` and `docker-compose`\n1. `git clone git@github.com:omkz/coolpics.git`\n1. run `docker-compose build`\n1. run `docker-compose run web rails db:setup`\n1. run `docker-compose up`\n1. That's it! Navigate to `localhost:3000`\n\n## If you want to contribute\n\nThe best way to contribute is to do one of the following :\n* Creating tests\n* Refactoring\n* Coding features\n* Correcting logged issues\n* Correcting my English! (I'm an Indonesian, so don't hesitate to fix my sentences or whole paragraphs.)\n\n## License\n\nCoolpics is open source under the MIT license. See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomkz%2Fcoolpics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomkz%2Fcoolpics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomkz%2Fcoolpics/lists"}