{"id":28300672,"url":"https://github.com/joangavelan/contactly_ash","last_synced_at":"2026-05-07T17:35:16.662Z","repository":{"id":291364230,"uuid":"971828076","full_name":"joangavelan/contactly_ash","owner":"joangavelan","description":"Simple contacts app built with Ash Framework, Phoenix, React, and Inertia","archived":false,"fork":false,"pushed_at":"2025-06-07T08:12:19.000Z","size":104,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-11T12:50:29.252Z","etag":null,"topics":["ash-framework","crud","csv","elixir","inertia","phoenix","postgresql","react"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/joangavelan.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-24T05:52:30.000Z","updated_at":"2025-07-09T12:48:30.000Z","dependencies_parsed_at":"2025-06-07T09:19:29.894Z","dependency_job_id":"b6c82c59-bc6b-45bc-bad7-da68605eb997","html_url":"https://github.com/joangavelan/contactly_ash","commit_stats":null,"previous_names":["joangavelan/contactly_ash"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/joangavelan/contactly_ash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joangavelan%2Fcontactly_ash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joangavelan%2Fcontactly_ash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joangavelan%2Fcontactly_ash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joangavelan%2Fcontactly_ash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joangavelan","download_url":"https://codeload.github.com/joangavelan/contactly_ash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joangavelan%2Fcontactly_ash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32748849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"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":["ash-framework","crud","csv","elixir","inertia","phoenix","postgresql","react"],"created_at":"2025-05-23T19:11:31.431Z","updated_at":"2026-05-07T17:35:16.641Z","avatar_url":"https://github.com/joangavelan.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Contactly (Ash/React version)\n\nThis is a demo Contacts Application built with the Ash Framework, Phoenix, React, and Inertia, featuring email/password authentication, full CRUD operations, pagination, search functionality, and CSV import/export capabilities.\n\nhttps://github.com/user-attachments/assets/6898281e-e18c-4980-ae10-6a355cb0c665\n\n## Features\n\n- **Email/Password Authentication**: Complete authentication system with user registration, login, email confirmation, password reset, and forgot password functionality using Ash Authentication.\n- **CRUD Operations**: Create, read, update, and delete contacts.\n- **Pagination**: Efficiently navigates through contact lists.\n- **Search**: Quickly find contacts using the search feature.\n- **CSV Import/Export**: Import and export contacts via CSV files.\n- **Modern Frontend**: Built with React and Inertia.js for a seamless single-page application experience.\n\n## Entity-Relationship Diagram (ERD)\n\n![contactly_ash_erd](https://github.com/user-attachments/assets/32ccf50e-ff62-4fdf-8cff-2cabf4c9516a)\n\n## Prerequisites\n\nBefore setting up the application, ensure you have the following installed:\n\n- **Elixir**: Version 1.14 or later. [Installation Guide](https://elixir-lang.org/install.html)\n- **Erlang**: Version 24 or later. [Installation Guide](https://elixir-lang.org/install.html)\n- **Node.js**: Version 16 or later. [Installation Guide](https://nodejs.org/)\n- **PostgreSQL**: Ensure it's installed and running. [Installation Guide](https://www.postgresql.org/download/)\n\n## Setup Instructions\n\n### Clone the Repository\n\n```bash\ngit clone https://github.com/joangavelan/contactly_ash.git\ncd contactly_ash\n```\n\n### Install Dependencies\n\nFetch and install the necessary Elixir dependencies:\n\n```bash\nmix deps.get\n```\n\nInstall Node.js dependencies for the frontend:\n\n```bash\ncd assets\nnpm install\ncd ..\n```\n\n### Database Configuration\n\nConfigure your database settings in `config/dev.exs`. Ensure the `username`, `password`, `hostname`, and `database` fields match your PostgreSQL setup:\n\n```elixir\nconfig :contactly, Contactly.Repo,\n  username: \"your_db_username\",\n  password: \"your_db_password\",\n  hostname: \"localhost\",\n  database: \"contactly_dev\",\n```\n\n### Create and Migrate the Database\n\nSet up the database by running:\n\n```bash\nmix ecto.create\nmix ecto.migrate\n```\n\n### Start the Server\n\nStart the Phoenix server:\n\n```bash\nmix phx.server\n```\n\nThe app will be accessible at [http://localhost:4000](http://localhost:4000).\n\n## Contributing\n\nContributions are welcome! Feel free to open an issue or submit a pull request with your improvements or feedback.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoangavelan%2Fcontactly_ash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoangavelan%2Fcontactly_ash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoangavelan%2Fcontactly_ash/lists"}