{"id":22189657,"url":"https://github.com/eucarlos/contact-list","last_synced_at":"2026-04-13T09:32:03.346Z","repository":{"id":37598967,"uuid":"506012502","full_name":"EuCarlos/contact-list","owner":"EuCarlos","description":"📱 Contact list with Ruby on Rails","archived":false,"fork":false,"pushed_at":"2022-06-25T21:02:37.000Z","size":22695,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-17T13:26:38.282Z","etag":null,"topics":["bootstrap","contact-list","rails","ruby"],"latest_commit_sha":null,"homepage":"","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/EuCarlos.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2022-06-21T21:43:27.000Z","updated_at":"2022-06-21T21:49:49.000Z","dependencies_parsed_at":"2022-08-25T19:10:38.949Z","dependency_job_id":null,"html_url":"https://github.com/EuCarlos/contact-list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EuCarlos/contact-list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EuCarlos%2Fcontact-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EuCarlos%2Fcontact-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EuCarlos%2Fcontact-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EuCarlos%2Fcontact-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EuCarlos","download_url":"https://codeload.github.com/EuCarlos/contact-list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EuCarlos%2Fcontact-list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31746294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["bootstrap","contact-list","rails","ruby"],"created_at":"2024-12-02T11:19:36.032Z","updated_at":"2026-04-13T09:32:03.320Z","avatar_url":"https://github.com/EuCarlos.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📱 Contact List\n🌐 _Para a versão em português deste README, [clique aqui](./docs/locales/pt-br/README.md)._\n\n## Requirements:\n* Ruby 2.7.3\n* Rails 6.1.6\n* SQLite 1.4\n\n## Installation:\n\nClone the repo:\n```bash\ngit clone https://github.com/EuCarlos/contact-list.git \u0026\u0026 cd contact-list\n```\n\nInstall dependencies using Yarn or NPM:\n\n```bash\nbundle install\n```\n\n## Configuration\nDatabase creation\n```bash\nrails db:create\n```\nDatabase initialization\n```bash\nrails db:migrate\n```\n## Run the project\n```bash\nrails server\n```\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## Prototype in figma\nFor the development of this project, a prototype was created in figma. To download the figma file, just go to: `./docs/design/ContactList.fig` or [click here](./docs/design/ContactList.fig).\n## 1. Resources\n![resources that are reused to create the site such as: header, footer and icons](./docs/images/1-recursos.png)\n\n## 2. Home page\n![prototype with computer table image on the right and create account button on the left](./docs/images/2-tela-inicial.png)\n\n## 3. Register page\n![prototype with registration form with the fields: name, e-mail, password and password confirmation](./docs/images/3-cadastre-se.png)\n\n## 4. Login page\n![prototype with login form with fields: email and password](./docs/images/4-entrar.png)\n\n## 5. Contact list page\n![prototype with contact list table with name, phone and buttons: show, edit and delete](./docs/images/5-lista-de-contatos.png)\n\n## 6. New contact page\n![prototype of new contacts with the fields: name, phone, create contact and back buttons](./docs/images/6-novo-contato.png)\n\n## 7. Edit profile page\n![prototype with edit profile form with fields: name, email, password and password confirmation](./docs/images/7-editar-perfil.png)\n\n## Routes\n| Prefix | Verb | URI Pattern | Controller#Action |\n| :----: | :---:| :---------- | :---------------- |\n| root | GET | `/` | `static_pages#index` |\n| sobre | GET | `/sobre(.:format)` | `static_pages#sobre` |\n| contato | GET | `/contato(.:format)`| `static_pages#contato` |\n| entrar | GET | `/entrar(.:format)` | `sessions#new` |\n|| POST  | `/entrar(.:format)` | `sessions#create` |\n| sair | DELETE| `/sair(.:format)` | `sessions#destroy` |\n| contacts | GET | `/contacts(.:format)`| `contacts#index` |\n|| POST| `/contacts(.:format)`| `contacts#create` |\n| new_contact | GET | `/contacts/new(.:format)`| `contacts#new` |\n| edit_contact | GET | `/contacts/:id/edit(.:format)` | `contacts#edit` |\n| contact | GET | `/contacts/:id(.:format)`| `contacts#show` |\n|| PATCH | `/contacts/:id(.:format)`| `contacts#update` |\n|| PUT | `/contacts/:id(.:format)`| `contacts#update` |\n|| DELETE| `/contacts/:id(.:format)`| `contacts#destroy` |\n| users | POST| `/users(.:format)`| `users#create` |\n| new_user | GET | `/users/new(.:format)`|`users#new` |\n| edit_user | GET | `/users/:id/edit(.:format)`| `users#edit` |\n| user | GET | `/users/:id(.:format)`|`users#show` |\n|| PATCH| `/users/:id(.:format)`|`users#update` |\n|| PUT | `/users/:id(.:format)`|`users#update` |\n| sessions | POST | `/sessions(.:format)`| `sessions#create` |\n| new_session | GET | `/sessions/new(.:format)`| `sessions#new` |\n| session | DELETE| `/sessions/:id(.:format)`| `sessions#destroy` |\n\n\u003c/pre\u003e\n\n## How to contribute to this project?\nBefore starting, check and follow the instructions for contributing to the repository. If not, you can follow the instructions below:\n\n1. Fork the project\n2. Create a new branch: git checkout -b nova-branch\n3. Commit your changes: git commit -m 'I added something'\n4. Push to branch: git push origin nova-branch\n5. Open a Pull Request\n\n## How do I report a bug or request a feature?\nIf you want to report a bug or request a feature, go to [Issue](https://github.com/eucarlos/contact-list/issues) on the GitHub Project and add your request.\n\n___\n\n\u003cp align=\"center\"\u003e\nCreated with 💜 by \u003ca href=\"https://github.com/eucarlos/\"\u003eCarlos Alves\u003c/a\u003e\u003c/p\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feucarlos%2Fcontact-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feucarlos%2Fcontact-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feucarlos%2Fcontact-list/lists"}