{"id":20759678,"url":"https://github.com/dhartisangani/indiefoods-backend","last_synced_at":"2026-04-16T10:31:30.696Z","repository":{"id":263154210,"uuid":"889505746","full_name":"dhartisangani/indiefoods-backend","owner":"dhartisangani","description":"IndieFoods is a home-cooked food subscription platform created to empower the indie chefs, the superstars who cook great food at home and want to take it a step higher. Our users will have the choice of multiple meal plans and chefs within their area.","archived":false,"fork":false,"pushed_at":"2024-11-16T14:01:43.000Z","size":2702,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-19T20:08:16.451Z","etag":null,"topics":["cors","express","firebase","mocha","nodejs","razorpay"],"latest_commit_sha":null,"homepage":"https://indie-foods.netlify.app/","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/dhartisangani.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}},"created_at":"2024-11-16T13:58:37.000Z","updated_at":"2024-11-16T14:31:37.000Z","dependencies_parsed_at":"2024-11-16T16:18:02.272Z","dependency_job_id":"2dbb1f5d-6f9d-4634-9e37-4c1331299950","html_url":"https://github.com/dhartisangani/indiefoods-backend","commit_stats":null,"previous_names":["dhartisangani/indiefoods-backend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dhartisangani/indiefoods-backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhartisangani%2Findiefoods-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhartisangani%2Findiefoods-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhartisangani%2Findiefoods-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhartisangani%2Findiefoods-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dhartisangani","download_url":"https://codeload.github.com/dhartisangani/indiefoods-backend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhartisangani%2Findiefoods-backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31881996,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T09:23:21.276Z","status":"ssl_error","status_checked_at":"2026-04-16T09:23:15.028Z","response_time":69,"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":["cors","express","firebase","mocha","nodejs","razorpay"],"created_at":"2024-11-17T10:05:47.929Z","updated_at":"2026-04-16T10:31:30.649Z","avatar_url":"https://github.com/dhartisangani.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# myapp\n\nMy cool app\n\n## Get Started\n\nGet started developing...\n\n```shell\n# install deps\nnpm install\n\n# run in development mode\nnpm run dev\n\n# run tests\nnpm run test\n```\n\n## How do I modify the example API and make it my own?\n\nThere are two key files that enable you to customize and describe your API:\n\n1. `server/routes.js` - This references the implementation of all of your routes. Add as many routes as you like and point each route your express handler functions.\n2. `server/common/api.yaml` - This file contains your [OpenAPI spec](https://swagger.io/specification/). Describe your API here. It's recommended that you to declare any and all validation logic in this YAML. `express-no-stress-typescript` uses [express-openapi-validator](https://github.com/cdimascio/express-openapi-validator) to automatically handle all API validation based on what you've defined in the spec.\n\n## Install Dependencies\n\nInstall all package dependencies (one time operation)\n\n```shell\nnpm install\n```\n\n## Run It\n\n#### Run in _development_ mode:\n\nRuns the application is development mode. Should not be used in production\n\n```shell\nnpm run dev\n```\n\nor debug it\n\n```shell\nnpm run dev:debug\n```\n\n#### Run in _production_ mode:\n\nCompiles the application and starts it in production production mode.\n\n```shell\nnpm run compile\nnpm start\n```\n\n## Test It\n\nRun the Mocha unit tests\n\n```shell\nnpm test\n```\n\nor debug them\n\n```shell\nnpm run test:debug\n```\n\n## Try It\n\n- Open your browser to [http://localhost:3000](http://localhost:3000)\n- Invoke the `/examples` endpoint\n  ```shell\n  curl http://localhost:3000/api/v1/examples\n  ```\n\n## Debug It\n\n#### Debug the server:\n\n```\nnpm run dev:debug\n```\n\n#### Debug Tests\n\n```\nnpm run test:debug\n```\n\n#### Debug with VSCode\n\nAdd these [contents](https://github.com/cdimascio/generator-express-no-stress/blob/next/assets/.vscode/launch.json) to your `.vscode/launch.json` file\n\n## Lint It\n\nView prettier linter output\n\n```\nnpm run lint\n```\n\nFix all prettier linter errors\n\n```\nnpm run lint\n```\n\n## Deploy It\n\nDeploy to CloudFoundry\n\n```shell\ncf push myapp\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhartisangani%2Findiefoods-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdhartisangani%2Findiefoods-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhartisangani%2Findiefoods-backend/lists"}