{"id":21363629,"url":"https://github.com/fredericbonnet/instakittens-react-admin","last_synced_at":"2025-10-27T09:47:51.028Z","repository":{"id":38987482,"uuid":"157887106","full_name":"fredericbonnet/instakittens-react-admin","owner":"fredericbonnet","description":"React-admin application for the Instakittens project","archived":false,"fork":false,"pushed_at":"2023-02-14T00:35:58.000Z","size":6087,"stargazers_count":12,"open_issues_count":22,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-03T04:21:59.626Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/fredericbonnet.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":"2018-11-16T15:37:51.000Z","updated_at":"2022-09-28T07:19:09.000Z","dependencies_parsed_at":"2023-02-14T19:31:23.841Z","dependency_job_id":null,"html_url":"https://github.com/fredericbonnet/instakittens-react-admin","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredericbonnet%2Finstakittens-react-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredericbonnet%2Finstakittens-react-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredericbonnet%2Finstakittens-react-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredericbonnet%2Finstakittens-react-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fredericbonnet","download_url":"https://codeload.github.com/fredericbonnet/instakittens-react-admin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225851349,"owners_count":17534294,"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":[],"created_at":"2024-11-22T06:20:25.683Z","updated_at":"2025-10-27T09:47:50.967Z","avatar_url":"https://github.com/fredericbonnet.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Instakittens React administration interface\n\nThis project implements an administration interface for the [Instakittens\nproject](https://github.com/fredericbonnet/instakittens).\n\nIt is based on the awesome [React-admin](https://github.com/marmelab/react-admin/) framework that lets you build admin web apps on top of REST/GraphQL APIs very rapidly.\n\nIt connects to the [Instakittens JSON Server](https://github.com/fredericbonnet/instakittens-json-server) backend on port 3000.\n\n## NPM Scripts\n\n### Serving the app\n\nStart the development server on port 3001:\n\n```sh\nnpm run start\n```\n\n### Unit tests\n\nRun Jest unit tests in watch mode:\n\n```sh\nnpm run test\n```\n\n### End-to-end tests\n\nEnd-to-end tests need a running development server on port 3001.\n\n#### Puppeteer\n\nRun Puppeteer tests once:\n\n```sh\nnpm run e2e\n```\n\nRun Puppeteer tests in watch mode:\n\n```sh\nnpm run e2e:watch\n```\n\nRun Puppeteer Cucumber scenarios once:\n\n```sh\nnpm run cucumber\n```\n\nRun Puppeteer Cucumber scenarios in watch mode:\n\n```sh\nnpm run cucumber:watch\n```\n\n#### Playwright\n\nRun Playwright tests once:\n\n```sh\nnpm run e2e-playwright\n```\n\nRun Playwright tests in watch mode:\n\n```sh\nnpm run e2e-playwright:watch\n```\n\nRun Playwright Cucumber scenarios once:\n\n```sh\nnpm run cucumber-playwright\n```\n\nRun Playwright Cucumber scenarios in watch mode:\n\n```sh\nnpm run cucumber-playwright:watch\n```\n\n#### Cypress\n\nRun Cypress tests \u0026 scenarios once:\n\n```sh\nnpm run cypress:run\n```\n\nOpen Cypress GUI:\n\n```sh\nnpm run cypress:open\n```\n\n#### TestCafé\n\nRun TestCafé tests \u0026 scenarios once:\n\n```sh\nnpm run testcafe\n```\n\nRun TestCafé tests \u0026 scenarios in watch mode:\n\n```sh\nnpm run testcafe:watch\n```\n\n#### CodeceptJS\n\nRun CodeceptJS tests \u0026 scenarios once:\n\n```sh\nnpm run codeceptjs\n```\n\nRun CodeceptJS tests \u0026 scenarios in watch mode:\n\n```sh\nnpm run codeceptjs:watch\n```\n\n## Project bootstrap\n\nThis project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) along with the React-Admin dependencies.\n\n```sh\ncreate-react-app instakittens-react-admin\ncd instakittens-react-admin\nnpm install react-admin ra-data-json-server prop-types\n```\n\nThe app's default port 3000 has been changed to 3001 in the [.env](.env) file.\n\nIn the project directory, you can run:\n\n### `npm start`\n\nRuns the app in the development mode.\u003cbr\u003e\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits.\u003cbr\u003e\nYou will also see any lint errors in the console.\n\n### `npm test`\n\nLaunches the test runner in the interactive watch mode.\u003cbr\u003e\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `npm run build`\n\nBuilds the app for production to the `build` folder.\u003cbr\u003e\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\u003cbr\u003e\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `npm run eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can’t go back!**\n\nIf you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.\n\nInstead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.\n\nYou don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.\n\n## Learn More\n\nYou can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).\n\nTo learn React, check out the [React documentation](https://reactjs.org/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffredericbonnet%2Finstakittens-react-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffredericbonnet%2Finstakittens-react-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffredericbonnet%2Finstakittens-react-admin/lists"}