{"id":31824403,"url":"https://github.com/codeandwander/final-test-project-42","last_synced_at":"2025-10-11T15:23:19.677Z","repository":{"id":310383086,"uuid":"1039657316","full_name":"codeandwander/final-test-project-42","owner":"codeandwander","description":"Autonomous build: Final test with AI code generation","archived":false,"fork":false,"pushed_at":"2025-08-17T17:52:14.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-17T19:29:09.311Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/codeandwander.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-08-17T17:51:14.000Z","updated_at":"2025-08-17T17:52:17.000Z","dependencies_parsed_at":"2025-08-17T19:39:31.438Z","dependency_job_id":null,"html_url":"https://github.com/codeandwander/final-test-project-42","commit_stats":null,"previous_names":["codeandwander/final-test-project-42"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/codeandwander/final-test-project-42","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ffinal-test-project-42","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ffinal-test-project-42/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ffinal-test-project-42/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ffinal-test-project-42/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeandwander","download_url":"https://codeload.github.com/codeandwander/final-test-project-42/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeandwander%2Ffinal-test-project-42/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279007596,"owners_count":26084333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-11T15:23:16.512Z","updated_at":"2025-10-11T15:23:19.671Z","avatar_url":"https://github.com/codeandwander.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Final Test Project\n\n## Table of Contents\n1. [Project Overview](#project-overview)\n2. [Features](#features)\n3. [Technologies Used](#technologies-used)\n4. [Getting Started](#getting-started)\n    - [Prerequisites](#prerequisites)\n    - [Installation](#installation)\n5. [API Documentation](#api-documentation)\n6. [User Guides](#user-guides)\n    - [Frontend](#frontend)\n    - [Backend](#backend)\n7. [Deployment](#deployment)\n8. [Contributing](#contributing)\n9. [License](#license)\n\n## Project Overview\nThis is a modern portfolio website for a freelance developer, built with React and Tailwind CSS for the frontend, and Python Flask for the backend API.\n\nThe main requirements for the project are:\n\n1. **Homepage**:\n   - Hero section with name and title\n   - Brief introduction/about section\n   - Skills showcase with icons\n   - Contact form at the bottom\n\n2. **Projects Gallery**:\n   - Grid layout showing project cards\n   - Each card has image, title, description\n   - Click to view project details\n   - Filter projects by technology\n\n3. **Backend Features**:\n   - API to manage projects (add, edit, delete)\n   - Contact form submission handling\n   - Store messages in database\n   - Admin panel to view messages\n\n4. **Design Requirements**:\n   - Dark mode toggle\n   - Fully responsive design\n   - Smooth animations\n   - Modern, clean aesthetic\n\n## Features\n- **Homepage**:\n  - Hero section with name and title\n  - Brief introduction/about section\n  - Skills showcase with icons\n  - Contact form at the bottom\n- **Projects Gallery**:\n  - Grid layout showing project cards\n  - Each card has image, title, description\n  - Click to view project details\n  - Filter projects by technology\n- **Backend**:\n  - API to manage projects (add, edit, delete)\n  - Contact form submission handling\n  - Store messages in database\n  - Admin panel to view messages\n- **Design**:\n  - Dark mode toggle\n  - Fully responsive design\n  - Smooth animations\n  - Modern, clean aesthetic\n\n## Technologies Used\n- **Frontend**:\n  - React\n  - Tailwind CSS\n- **Backend**:\n  - Python Flask\n  - SQLAlchemy (for database management)\n\n## Getting Started\n\n### Prerequisites\n- Node.js (version 14 or later)\n- Python (version 3.7 or later)\n- PostgreSQL (for the database)\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/your-username/final-test-project.git\n```\n\n2. Install frontend dependencies:\n```bash\ncd final-test-project/frontend\nnpm install\n```\n\n3. Install backend dependencies:\n```bash\ncd ../backend\npip install -r requirements.txt\n```\n\n4. Set up the database:\n```bash\n# Create a new PostgreSQL database\n# Update the database connection string in the backend/config.py file\n\n# Run database migrations\ncd backend\nflask db upgrade\n```\n\n5. Start the development servers:\n```bash\n# Start the frontend\ncd frontend\nnpm start\n\n# Start the backend\ncd ../backend\nflask run\n```\n\nThe frontend will be available at `http://localhost:3000`, and the backend API at `http://localhost:5000`.\n\n## API Documentation\nThe API documentation can be found in the [API Documentation](api-documentation.md) file.\n\n## User Guides\n### Frontend\nThe user guide for the frontend can be found in the [Frontend User Guide](frontend-user-guide.md) file.\n\n### Backend\nThe user guide for the backend can be found in the [Backend User Guide](backend-user-guide.md) file.\n\n## Deployment\nThe deployment instructions can be found in the [Deployment](deployment.md) file.\n\n## Contributing\nIf you would like to contribute to this project, please follow the guidelines in the [CONTRIBUTING.md](CONTRIBUTING.md) file.\n\n## License\nThis project is licensed under the [MIT License](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeandwander%2Ffinal-test-project-42","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeandwander%2Ffinal-test-project-42","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeandwander%2Ffinal-test-project-42/lists"}