{"id":28224732,"url":"https://github.com/jsardev/payload-minrows-issue","last_synced_at":"2026-07-02T01:31:10.440Z","repository":{"id":293627394,"uuid":"984638997","full_name":"jsardev/payload-minrows-issue","owner":"jsardev","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-16T09:04:02.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T14:49:03.194Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/jsardev.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-05-16T09:00:45.000Z","updated_at":"2025-05-16T09:04:06.000Z","dependencies_parsed_at":"2025-05-16T10:33:20.014Z","dependency_job_id":null,"html_url":"https://github.com/jsardev/payload-minrows-issue","commit_stats":null,"previous_names":["jsardev/payload-minrows-issue"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jsardev/payload-minrows-issue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsardev%2Fpayload-minrows-issue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsardev%2Fpayload-minrows-issue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsardev%2Fpayload-minrows-issue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsardev%2Fpayload-minrows-issue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsardev","download_url":"https://codeload.github.com/jsardev/payload-minrows-issue/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsardev%2Fpayload-minrows-issue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35029796,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"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-05-18T09:13:25.727Z","updated_at":"2026-07-02T01:31:10.378Z","avatar_url":"https://github.com/jsardev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Payload Blank Template\n\nThis template comes configured with the bare minimum to get started on anything you need.\n\n## Quick start\n\nThis template can be deployed directly from our Cloud hosting and it will setup MongoDB and cloud S3 object storage for media.\n\n## Quick Start - local setup\n\nTo spin up this template locally, follow these steps:\n\n### Clone\n\nAfter you click the `Deploy` button above, you'll want to have standalone copy of this repo on your machine. If you've already cloned this repo, skip to [Development](#development).\n\n### Development\n\n1. First [clone the repo](#clone) if you have not done so already\n2. `cd my-project \u0026\u0026 cp .env.example .env` to copy the example environment variables. You'll need to add the `MONGODB_URI` from your Cloud project to your `.env` if you want to use S3 storage and the MongoDB database that was created for you.\n\n3. `pnpm install \u0026\u0026 pnpm dev` to install dependencies and start the dev server\n4. open `http://localhost:3000` to open the app in your browser\n\nThat's it! Changes made in `./src` will be reflected in your app. Follow the on-screen instructions to login and create your first admin user. Then check out [Production](#production) once you're ready to build and serve your app, and [Deployment](#deployment) when you're ready to go live.\n\n#### Docker (Optional)\n\nIf you prefer to use Docker for local development instead of a local MongoDB instance, the provided docker-compose.yml file can be used.\n\nTo do so, follow these steps:\n\n- Modify the `MONGODB_URI` in your `.env` file to `mongodb://127.0.0.1/\u003cdbname\u003e`\n- Modify the `docker-compose.yml` file's `MONGODB_URI` to match the above `\u003cdbname\u003e`\n- Run `docker-compose up` to start the database, optionally pass `-d` to run in the background.\n\n## How it works\n\nThe Payload config is tailored specifically to the needs of most websites. It is pre-configured in the following ways:\n\n### Collections\n\nSee the [Collections](https://payloadcms.com/docs/configuration/collections) docs for details on how to extend this functionality.\n\n- #### Users (Authentication)\n\n  Users are auth-enabled collections that have access to the admin panel.\n\n  For additional help, see the official [Auth Example](https://github.com/payloadcms/payload/tree/main/examples/auth) or the [Authentication](https://payloadcms.com/docs/authentication/overview#authentication-overview) docs.\n\n- #### Media\n\n  This is the uploads enabled collection. It features pre-configured sizes, focal point and manual resizing to help you manage your pictures.\n\n### Docker\n\nAlternatively, you can use [Docker](https://www.docker.com) to spin up this template locally. To do so, follow these steps:\n\n1. Follow [steps 1 and 2 from above](#development), the docker-compose file will automatically use the `.env` file in your project root\n1. Next run `docker-compose up`\n1. Follow [steps 4 and 5 from above](#development) to login and create your first admin user\n\nThat's it! The Docker instance will help you get up and running quickly while also standardizing the development environment across your teams.\n\n## Questions\n\nIf you have any issues or questions, reach out to us on [Discord](https://discord.com/invite/payload) or start a [GitHub discussion](https://github.com/payloadcms/payload/discussions).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsardev%2Fpayload-minrows-issue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsardev%2Fpayload-minrows-issue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsardev%2Fpayload-minrows-issue/lists"}