{"id":29484045,"url":"https://github.com/jonigl/should-i-deploy-today-netlify","last_synced_at":"2025-08-21T01:10:18.087Z","repository":{"id":267482571,"uuid":"901394072","full_name":"jonigl/should-i-deploy-today-netlify","owner":"jonigl","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-21T15:50:02.000Z","size":110,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-29T07:49:46.009Z","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/jonigl.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":"2024-12-10T15:21:15.000Z","updated_at":"2025-02-21T15:50:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"4e8ad947-c66b-4cbe-89ce-ca8d42949888","html_url":"https://github.com/jonigl/should-i-deploy-today-netlify","commit_stats":null,"previous_names":["jonigl/should-i-deploy-today-netlify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jonigl/should-i-deploy-today-netlify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonigl%2Fshould-i-deploy-today-netlify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonigl%2Fshould-i-deploy-today-netlify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonigl%2Fshould-i-deploy-today-netlify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonigl%2Fshould-i-deploy-today-netlify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonigl","download_url":"https://codeload.github.com/jonigl/should-i-deploy-today-netlify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonigl%2Fshould-i-deploy-today-netlify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271411198,"owners_count":24754874,"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","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"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-07-15T04:20:50.445Z","updated_at":"2025-08-21T01:10:18.064Z","avatar_url":"https://github.com/jonigl.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Should I Deploy Today - Netlify\n\n## Vite \n\n- Running locally `npm run dev`\n- Building dist `npm run build`\n\n## UI Framework\n\n- [Magic UI](https://magicui.design/). If you are curious enough check: [Install and configure Vite](https://magicui.design/docs/installation/vite)\n  - Also check this [issue answer](https://github.com/shadcn-ui/ui/issues/4677#issuecomment-2323108511) to fix some issues with shadcdn \n- Install [tailwind](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss) vscode extension \n  - Dark mode fixed following [this](https://github.com/shadcn-ui/ui/issues/515#issuecomment-1834219536) \n  - Adding Prettier [plugin](https://github.com/tailwindlabs/prettier-plugin-tailwindcss)\n\n## Netlify\n\n- Intall Netlify cli `npm install netlify-cli -g`\n- If you want to use Netlify Functions add this dependency `npm install @netlify/functions`\n  - To test your app including your netlify function you can run this `netlify dev`\n  - Remeber to rename .env.example file to .env and set your envars for local runs\n\n# About the base template\n\n## React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:\n\n- Configure the top-level `parserOptions` property like this:\n\n```js\nexport default tseslint.config({\n  languageOptions: {\n    // other options...\n    parserOptions: {\n      project: ['./tsconfig.node.json', './tsconfig.app.json'],\n      tsconfigRootDir: import.meta.dirname,\n    },\n  },\n})\n```\n\n- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`\n- Optionally add `...tseslint.configs.stylisticTypeChecked`\n- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:\n\n```js\n// eslint.config.js\nimport react from 'eslint-plugin-react'\n\nexport default tseslint.config({\n  // Set the react version\n  settings: { react: { version: '18.3' } },\n  plugins: {\n    // Add the react plugin\n    react,\n  },\n  rules: {\n    // other rules...\n    // Enable its recommended rules\n    ...react.configs.recommended.rules,\n    ...react.configs['jsx-runtime'].rules,\n  },\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonigl%2Fshould-i-deploy-today-netlify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonigl%2Fshould-i-deploy-today-netlify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonigl%2Fshould-i-deploy-today-netlify/lists"}