{"id":20064669,"url":"https://github.com/overloadedsam/recipe-app","last_synced_at":"2026-04-07T20:32:13.393Z","repository":{"id":65264878,"uuid":"588997326","full_name":"OverloadedSam/recipe-app","owner":"OverloadedSam","description":"Simple recipe app made using MERN Stack","archived":false,"fork":false,"pushed_at":"2023-01-15T07:35:43.000Z","size":596,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-02T10:42:15.383Z","etag":null,"topics":["express","mongodb","mongoose","nodejs","reactjs"],"latest_commit_sha":null,"homepage":"https://foodieapp.onrender.com","language":"JavaScript","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/OverloadedSam.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":"2023-01-14T18:19:22.000Z","updated_at":"2023-01-15T10:02:43.000Z","dependencies_parsed_at":"2023-01-16T01:45:49.344Z","dependency_job_id":null,"html_url":"https://github.com/OverloadedSam/recipe-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OverloadedSam/recipe-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OverloadedSam%2Frecipe-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OverloadedSam%2Frecipe-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OverloadedSam%2Frecipe-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OverloadedSam%2Frecipe-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OverloadedSam","download_url":"https://codeload.github.com/OverloadedSam/recipe-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OverloadedSam%2Frecipe-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31528368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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":["express","mongodb","mongoose","nodejs","reactjs"],"created_at":"2024-11-13T13:47:20.352Z","updated_at":"2026-04-07T20:32:13.374Z","avatar_url":"https://github.com/OverloadedSam.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FOODIE\n\nThis app allows users to view a list of recipes, and see the full details of a recipe including the preparation steps.\n\nThe app is built using MERN Stack (MongoDB, Express.js, React.js, Node.js) and user authentication is implemented.\n\nOnly logged-in users are able to access the list of recipes and view the full details of a recipe. Users can register themselves to gain access to the recipe list.\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes.\n\n## Prerequisites\n\n- Node.js \u003e= 18.12.1\n- NPM \u003e= 8.19.2\n- MongoDB\n\n## Installation\n\n1. Clone the repository\n\n        $ git clone https://github.com/OverloadedSam/recipe-app.git\n\n2. Go to `frontend` and `backend` directory one by one and install dependencies with command shown at 3rd step.\n\n        $ cd frontend/\n        // And\n        $ cd backend/\n\n3. Install the dependencies\n\n\n    $ npm install\n\n## Configure App\n\nYou have to set the environment variables of your configuration before starting the app.\n\n### 1. Environment variables for `frontend`\n\nCreate a `.env` file at `recipe-app/frontend/` directory and set the following environment variables starting with prefix `VITE_`\n\n    VITE_BASE_URL={api_url_of_the_backend} // e.g: http://localhost:8000/api\n\n### 2. Environment variables for `backend`\n\nCreate a `.env` file at `recipe-app/backend/` directory and set the following environment variables.\n\n    PORT=8000 // You can set any port number that is available but make sure to correctly include it in frontend environment variables.\n    ORIGIN={your_frontend_origin} // e.g: http://localhost:3000\n    BASE_API_URL=/api\n\n    DB_NAME={mongodb_database_name}\n    DB_CONNECTION_STRING={your_mongodb_connection_uri}\n    SECRET={secret_for_jwt} // e.g: shhhhh\n    SALT={salt_to_hash_passwords} // Recommended: 10\n\n### 3. Seed the database with mock/sample data.\n\nFor populating the database with sample data, please use the following command to seed the database\n\n    $ cd recipe-app/backend // go to backend directory.\n    $ node seed.js\n\n## Running The Project\n\n### Start backend (Node API)\n\n    $ cd recipe-app/backend // go to backend directory\n    $ npm run dev // run backend with hot reloading.\n    // or you can run the backend with standard command\n    $ node server.js\n\n### Start Frontend (React app [VITE])\n\n    $ cd recipe-app/frontend // go to frontend directory\n    $ npm run dev\n\n## Deployment\n\nThe app can be deployed to a hosting platform such as Render or Heroku.\n\n## Built With\n\n- [MongoDB](https://www.mongodb.com/)\n- [Express](https://expressjs.com/)\n- [React](https://reactjs.org/)\n- [Node.js](https://nodejs.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foverloadedsam%2Frecipe-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foverloadedsam%2Frecipe-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foverloadedsam%2Frecipe-app/lists"}