{"id":19484302,"url":"https://github.com/dwija12903/contact-manager-web-app","last_synced_at":"2026-05-05T19:33:11.586Z","repository":{"id":229685668,"uuid":"777364433","full_name":"dwija12903/Contact-Manager-Web-App","owner":"dwija12903","description":"Contact Manager is a simple web application that allows users to manage their contacts.","archived":false,"fork":false,"pushed_at":"2024-10-09T09:38:23.000Z","size":639,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T16:11:33.830Z","etag":null,"topics":["flask","flask-sqlalchemy","html-css","reactjs","sqlite"],"latest_commit_sha":null,"homepage":"https://contact-manager-dwija12.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dwija12903.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-25T18:00:57.000Z","updated_at":"2024-10-09T09:53:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"9d864aa9-c309-48cd-b32c-ccf2bcbb2e6d","html_url":"https://github.com/dwija12903/Contact-Manager-Web-App","commit_stats":null,"previous_names":["dwija12903/contact-manager-web-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dwija12903/Contact-Manager-Web-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2FContact-Manager-Web-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2FContact-Manager-Web-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2FContact-Manager-Web-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2FContact-Manager-Web-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dwija12903","download_url":"https://codeload.github.com/dwija12903/Contact-Manager-Web-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dwija12903%2FContact-Manager-Web-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32664991,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"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":["flask","flask-sqlalchemy","html-css","reactjs","sqlite"],"created_at":"2024-11-10T20:20:11.766Z","updated_at":"2026-05-05T19:33:11.567Z","avatar_url":"https://github.com/dwija12903.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📞 Contact Manager App\n\n## Description\n\nThe **Contact Manager App** is a web application built with **Flask** for the backend and **React** for the frontend. It allows users to manage their contacts by providing functionalities to create, read, update, and delete (CRUD) contact information. ✨\n\n## Features\n\n- **View Contacts**: Retrieve and display a list of all contacts. 👀\n- **Create Contact**: Add new contacts with first name, last name, and email. ➕\n- **Edit Contact**: Update existing contact information. ✏️\n- **Delete Contact**: Remove contacts from the list. ❌\n- **Responsive Modal**: A modal interface for creating and editing contacts. 🆕\n\n## Technologies Used\n\n- **Frontend**: \n  - React ⚛️\n  - CSS 🎨\n- **Backend**:\n  - Flask 🐍\n  - SQLAlchemy (ORM) 📦\n  - SQLite (Database) 🗄️\n- **APIs**: RESTful API for contact management 🌐\n- **CORS**: To enable cross-origin requests between the frontend and backend 🔗\n\n## Installation\n\n### Prerequisites\n\n- Node.js and npm (for React frontend) 🌱\n- Python and pip (for Flask backend) 🐍\n- SQLite (comes pre-installed with Python) 📚\n\n### Backend Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/dwija12903/Contact-Manager-Web-App.git\n   cd Contact-Manager-Web-App\n   ```\n\n2. Install the required Python packages:\n   ```bash\n   cd backend\n   pip install -r requirements.txt\n   ```\n\n3. Create a `.env` file and set the database URI:\n   ```plaintext\n   SQLALCHEMY_DATABASE_URI = sqlite:///mydatabase.db\n   ```\n\n4. Run the Flask backend:\n   ```bash\n   python main.py\n   ```\n\n### Frontend Setup\n\n1. Navigate to the frontend directory:\n   ```bash\n   cd frontend\n   ```\n\n2. Install the required npm packages:\n   ```bash\n   npm install\n   ```\n\n3. Create a `.env` file in the frontend directory and set the backend URL:\n   ```plaintext\n   REACT_APP_BACKEND_URL= \"http://127.0.0.1:5000\"\n   ```\n\n4. Start the React app:\n   ```bash\n   npm start\n   ```\n\n## Application Structure\n\n```\n.\n├── backend\n│   ├── app.py                 # Main Flask application\n│   ├── config.py              # Configuration settings for Flask and SQLAlchemy\n│   └── models.py              # Database models (Contact)\n└── frontend\n    ├── src\n    │   ├── App.js             # Main React component\n    │   ├── ContactList.js      # Component to display the list of contacts\n    │   └── ContactForm.js      # Component for adding/editing contacts\n    └── package.json            # npm package configuration\n```\n\n## Usage\n\n1. **Creating a Contact**: Click on \"Add New Contact\" to open the modal, fill in the details, and submit the form. 📝\n2. **Editing a Contact**: Click \"Edit\" next to the desired contact to populate the form with existing data, make changes, and submit. ✨\n3. **Deleting a Contact**: Click \"Delete\" next to a contact to remove it from the list after confirming the action. ⚠️\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. 📜\n\n## Acknowledgments\n\n- [Flask](https://flask.palletsprojects.com/) for the backend framework 🐍\n- [React](https://reactjs.org/) for the frontend library ⚛️\n- [SQLAlchemy](https://www.sqlalchemy.org/) for ORM capabilities 📦\n- [CORS](https://flask-cors.readthedocs.io/en/latest/) for handling cross-origin requests 🔗\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdwija12903%2Fcontact-manager-web-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdwija12903%2Fcontact-manager-web-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdwija12903%2Fcontact-manager-web-app/lists"}