{"id":31711030,"url":"https://github.com/neymarsabin/socialnetwork","last_synced_at":"2026-04-13T08:31:26.311Z","repository":{"id":117153832,"uuid":"90256976","full_name":"neymarsabin/socialnetwork","owner":"neymarsabin","description":"A social network for developers","archived":false,"fork":false,"pushed_at":"2018-12-10T13:53:21.000Z","size":1507,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-09T00:55:07.117Z","etag":null,"topics":["developers","nepal","project","rails","recommendation-system","ruby","social-network","team-envianto"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neymarsabin.png","metadata":{"files":{"readme":"readme.org","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-05-04T11:46:09.000Z","updated_at":"2025-04-26T15:36:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"21568633-2aac-4767-8632-c93732ecf2c4","html_url":"https://github.com/neymarsabin/socialnetwork","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neymarsabin/socialnetwork","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neymarsabin%2Fsocialnetwork","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neymarsabin%2Fsocialnetwork/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neymarsabin%2Fsocialnetwork/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neymarsabin%2Fsocialnetwork/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neymarsabin","download_url":"https://codeload.github.com/neymarsabin/socialnetwork/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neymarsabin%2Fsocialnetwork/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31746101,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T06:26:45.479Z","status":"ssl_error","status_checked_at":"2026-04-13T06:26:44.645Z","response_time":93,"last_error":"SSL_read: 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":["developers","nepal","project","rails","recommendation-system","ruby","social-network","team-envianto"],"created_at":"2025-10-09T00:53:03.052Z","updated_at":"2026-04-13T08:31:26.303Z","avatar_url":"https://github.com/neymarsabin.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+TITLE: Coders Sanjal\n#+OPTIONS: H:1 num:nil toc:nil \n#+AUTHOR: neymarsabin\n#+EMAIL: reddevil.sabin@gmail.com\n\n\n* Introduction \n\tA social network developed for developers.It is a platform which intends to be the best junction for all developers mostly of Nepal to meet at a place and discuss,share ideas and collaborate with each other.The social network features include following,story telling,reputation system,real time private messaging,questions and answers by using the forum and many more.\n\n* Configurations \n\t#+BEGIN_QUOTE\n\tPlease follow this accordingly in your development environment to setup the system.\n\t#+END_QUOTE\n\tHere are the software requirements in the development environment:- \n\t1. Ruby-2.4.0p0\n\t2. Rails 5.0.2\n\t3. Mysql\n\t4. Redis [ for future use ]\n\n* Database Configuration: \n\tHere is what the *database.yml* file looks like:- \n\t#+BEGIN_SRC yaml\n  \tdefault: \u0026default\n  \tadapter: mysql2\n  \tencoding: utf8\n  \tpool: 5\n  \tusername: socialnetwork\n  \tpassword: socialnetwork\n  \thost: localhost\n\n  \tdevelopment:\n  \t\t\u003c\u003c: *default\n  \t\tdatabase: socialnetwork_development\n\n  \ttest:\n  \t\t\u003c\u003c: *default\n  \t\tdatabase: socialnetwork_test\n\t#+END_SRC\n\n\n\n** Start by creating database:\n\t #+BEGIN_SRC sh \n\t rails db:create\n\t #+END_SRC\n\n\t \n** Check in mysql console before performing these actions: \n*** create a mysql user as socialnetwork\n\t\tcreate a user *socialnetwork* for the database *socialnetwork_development*:- \n\t\t#+BEGIN_SRC sql \n    \tgrant all privileges on socialnetwork_development.* to 'socialnetwork'@'localhost' identified by 'socialnetwork';\n\t\t#+END_SRC\n\t\tand similarly for the database *socialnetwork_test*:- \n\t\t#+BEGIN_SRC sql \n\t\tgrant all privileges on socialnetwork_test.* to 'socialnetwork'@'localhost' identified by 'socialnetwork';\n\t\t#+END_SRC\n\n*** check if the user has been created:- \n\t\t#+BEGIN_SRC sh \n\t\tmysql -u socialnetwork -p\n\t\t#+END_SRC\n\t\tNote the password is *socialnetwork* for both *development* and *test* environments.\n\t\t\n\n** Now migrate the database: \n\t In your console:\n\t #+BEGIN_SRC sh \n\t rails db:migrate\n\t #+END_SRC\n\n* To contribute\n\tJust create a new branch and do your changes.Just for the note: \n\t#+BEGIN_QUOTE\n\tAlways be synced up with the github master branch.None will be responsible for your merge conflicts.\n\t#+END_QUOTE\n\tTo pull the master branch: \n\t#+BEGIN_SRC sh \n\tgit pull origin master\n\t#+END_SRC\n\tAfter your contributions just push it or create a pull request.\n\n* Thank You Team Members\n\t#+BEGIN_QUOTE\n\tFollow these and we all be together in the project.\n\t#+END_QUOTE\n\n* Short information on recaptcha \n\t- Recaptcha requires API key from google: \n\t\t\n\t\t#+BEGIN_QUOTE\n\n\t\t#+END_QUOTE\n\n\t- To use recaptcha, create a file called .env in your root folder of project: \n\t\t#+BEGIN_SRC bash \n\t\ttouch .env \n\t\t#+END_SRC\n\n\t- Insert the API keys from google in the .env file: \n\t\t#+BEGIN_EXAMPLE\n\t\tRECAPTCHA_SITE_KEY=\u003crecaptcha_site_key_from_google\u003e \n\t\tRECAPTCHA_SECRET_KEY=\u003crecaptcha_secrete_key_from_google\u003e \n\t\t#+END_EXAMPLE\n\t\t\n\n\n\n\t\t\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneymarsabin%2Fsocialnetwork","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneymarsabin%2Fsocialnetwork","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneymarsabin%2Fsocialnetwork/lists"}