{"id":25655021,"url":"https://github.com/manthanank/quote-app","last_synced_at":"2026-04-12T15:01:49.992Z","repository":{"id":278946567,"uuid":"937251477","full_name":"manthanank/quote-app","owner":"manthanank","description":"Quote App in Mean Stack","archived":false,"fork":false,"pushed_at":"2025-02-22T17:57:01.000Z","size":0,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T18:31:19.594Z","etag":null,"topics":["angular","express","expressjs","gemini","gemini-api","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"https://quote-app-manthanank.vercel.app","language":"CSS","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/manthanank.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},"funding":{"github":["manthanank"],"open_collective":"manthanank","buy_me_a_coffee":"manthanank","patreon":"manthanank"}},"created_at":"2025-02-22T17:35:55.000Z","updated_at":"2025-02-22T17:59:44.000Z","dependencies_parsed_at":"2025-02-22T18:43:52.596Z","dependency_job_id":null,"html_url":"https://github.com/manthanank/quote-app","commit_stats":null,"previous_names":["manthanank/quote-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fquote-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fquote-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fquote-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fquote-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manthanank","download_url":"https://codeload.github.com/manthanank/quote-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240379417,"owners_count":19792129,"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","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":["angular","express","expressjs","gemini","gemini-api","mongodb","nodejs"],"created_at":"2025-02-23T21:19:01.908Z","updated_at":"2026-04-12T15:01:49.918Z","avatar_url":"https://github.com/manthanank.png","language":"CSS","funding_links":["https://github.com/sponsors/manthanank","https://opencollective.com/manthanank","https://buymeacoffee.com/manthanank","https://patreon.com/manthanank"],"categories":[],"sub_categories":[],"readme":"# Quote App\n\nA modern web application that displays inspiring daily quotes. Built with Angular frontend and Node.js/Express backend.\n\n## Features\n\n- Daily rotating inspirational quotes\n- Modern, responsive UI with glassmorphism design\n- AI-powered quote generation using Google's Gemini model\n- MongoDB integration for quote storage\n- CORS-enabled secure communication between frontend and backend\n- Environment-based configuration\n- SEO optimization for better visibility\n\n## Tech Stack\n\n### Frontend\n\n- Angular 19\n- RxJS\n- TypeScript\n- Modern CSS with responsive design\n- Responsive layouts with CSS Grid and Flexbox\n\n### Backend\n\n- Node.js\n- Express\n- MongoDB with Mongoose\n- Google Generative AI (Gemini)\n- Security features (helmet, rate-limiter)\n\n## Getting Started\n\n1. Clone the repository\n\n    ```sh\n    git clone https://github.com/manthanank/quote-app.git\n    ```\n\n    ```sh\n    cd quote-app\n    ```\n\n2. Install dependencies\n\n    ```sh\n    # Install frontend dependencies\n    npm install\n\n    # Install backend dependencies\n    cd backend\n    npm install\n    ```\n\n3. Configure environment variables\n\n    - Copy `backend/.example.env` to `.env`\n    - Add your MongoDB URI and Gemini API key\n\n    ```text\n    MONGO_URI=your_mongodb_uri\n    GEMINI_API_KEY=your_gemini_api_key\n    PORT=5000\n    NODE_ENV=development\n    BASE_URL=http://localhost:5000\n    FRONTEND_URL=http://localhost:4200\n    ```\n\n4. Run the application\n\n    ```sh\n    # Start frontend\n    npm start\n    \n    # Start backend\n    cd backend\n    npm run dev\n    ```\n\n5. Open \u003chttp://localhost:4200\u003e in your browser\n\n## Project Structure\n\n```text\nproject-root/\n├── src/                      # Angular frontend application\n│   ├── app/                  # Angular components and modules\n│   │   ├── ..             # Other components\n│   ├── services/            # Angular services\n│   │   ├── ..             # Other services\n│   ├── models/              # TypeScript interfaces\n│   │   ├── ..          # Other models\n│   ├── environments/         # Environment configurations\n│   ...\n└── backend/                 # Node.js backend\n    ├── config/             # Database configuration\n    ├── controllers/        # API controllers\n    ├── models/             # MongoDB schemas\n    ├── routes/             # API routes\n    ├── services/           # AI integration services\n    └── ...            # Other backend files\n```\n\n## API Documentation\n\n### Endpoints\n\n#### Get Daily Quote\n\n```http\nGET /api/quote\n```\n\n**Description:**\nRetrieves the quote of the day. Automatically generates a new quote using Gemini AI if none exists for the current date.\n\n**Response Format:**\n\n```json\n{\n  \"text\": \"Quote text\",\n  \"author\": \"Author name\",\n  \"date\": \"2024-03-10T00:00:00.000Z\"\n}\n```\n\n**Status Codes:**\n\n- `200` - Success\n- `500` - Server Error\n\n## Scripts\n\n### Frontend Scripts\n\n- `npm start` - Run development server\n- `npm run build` - Build production bundle\n- `npm test` - Run unit tests\n- `npm run watch` - Build with watch mode\n\n### Backend Scripts\n\n- `npm start` - Start production server\n- `npm run dev` - Start development server with hot reload\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanthanank%2Fquote-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanthanank%2Fquote-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanthanank%2Fquote-app/lists"}