{"id":20599096,"url":"https://github.com/programveins/invente-web","last_synced_at":"2026-04-22T09:32:04.683Z","repository":{"id":121860858,"uuid":"541083327","full_name":"programVeins/invente-web","owner":"programVeins","description":null,"archived":false,"fork":false,"pushed_at":"2022-10-02T18:00:42.000Z","size":1127,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-06T15:34:43.450Z","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/programVeins.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":"2022-09-25T06:59:55.000Z","updated_at":"2022-09-25T07:06:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"07306111-0768-40a6-ab26-67ad3374144b","html_url":"https://github.com/programVeins/invente-web","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/programVeins/invente-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programVeins%2Finvente-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programVeins%2Finvente-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programVeins%2Finvente-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programVeins%2Finvente-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/programVeins","download_url":"https://codeload.github.com/programVeins/invente-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programVeins%2Finvente-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32129639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T08:34:57.708Z","status":"ssl_error","status_checked_at":"2026-04-22T08:34:55.583Z","response_time":58,"last_error":"SSL_read: 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":[],"created_at":"2024-11-16T08:31:00.017Z","updated_at":"2026-04-22T09:32:04.657Z","avatar_url":"https://github.com/programVeins.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qwik App ⚡️\n\n- [Qwik Docs](https://qwik.builder.io/)\n- [Discord](https://qwik.builder.io/chat)\n- [Qwik Github](https://github.com/BuilderIO/qwik)\n- [@QwikDev](https://twitter.com/QwikDev)\n- [Vite](https://vitejs.dev/)\n- [Partytown](https://partytown.builder.io/)\n- [Mitosis](https://github.com/BuilderIO/mitosis)\n- [Builder.io](https://www.builder.io/)\n\n---\n\n## Project Structure\n\nInside of you project, you'll see the following directories and files:\n\n```\n├── public/\n│   └── ...\n└── src/\n    ├── components/\n    │   └── ...\n    └── routes/\n        └── ...\n```\n\n- `src/routes`: Provides the directory based routing, which can include a hierarchy of `layout.tsx` layout files, and `index.tsx` files as the page. Additionally, `index.ts` files are endpoints. Please see the [routing docs](https://qwik.builder.io/qwikcity/routing/overview/) for more info.\n\n- `src/components`: Recommended directory for components.\n\n- `public`: Any static assets, like images, can be placed in the public directory. Please see the [Vite public directory](https://vitejs.dev/guide/assets.html#the-public-directory) for more info.\n\n## Add Integrations\n\nUse the `npm run qwik add` command to add other integrations. Some examples of integrations include as a Cloudflare, Netlify or Vercel server, and the Static Site Generator (SSG).\n\n```\nnpm run qwik add\n```\n\n## Development\n\nDevelopment mode uses [Vite's development server](https://vitejs.dev/). For Qwik during development, the `dev` command will also server-side render (SSR) the output. The client-side development modules loaded by the browser.\n\n```\nnpm run dev\n```\n\n\u003e Note: during dev mode, Vite will request many JS files, which does not represent a Qwik production build.\n\n## Preview\n\nThe preview command will create a production build of the client modules, production build of `src/entry.preview.tsx`, and create a local server. The preview server is only for convenience to locally preview a production build, but it should not be used as a production server.\n\n```\nnpm run preview\n```\n\n## Production\n\nThe production build should generate the client and server modules by running both client and server build commands. Additionally, the build command will use Typescript run a type check on the source.\n\n```\nnpm run build\n```\n\n## Netlify\n\nThis starter site is configured to deploy to [Netlify Edge Functions](https://www.netlify.com/products/edge/), which means it will be rendered at an edge location near to your users.\n\n### Local development\n\nThe [Netlify CLI](https://docs.netlify.com/cli/get-started/) can be used to preview a production build locally. To do so: First build your site, then to start a local server, run:\n\n1. install Netlify CLI globally `npm i -g netlify-cli`\n2. Build your site both ssr and client `npm run build`.\n3. Start a local server with `npm run serve`.\n   In this project, `npm run serve` uses the `netlify dev` command to spin up a server that can handle Netlify's Edge Functions locally.\n4. Visit [http://localhost:8888/](http://localhost:8888/) to check out your site.\n\n### Deployments\n\nYou can [deploy your site to Netlify](https://docs.netlify.com/site-deploys/create-deploys/) either via a Git provider integration or through the Netlify CLI. This starter site includes a `netlify.toml` file to configure your build for deployment.\n\n#### Deploying via Git\n\nOnce your site has been pushed to your Git provider, you can either link it [in the Netlify UI](https://app.netlify.com/start) or use the CLI. To link your site to a Git provider from the Netlify CLI, run the command:\n\n```shell\nnetlify link\n```\n\nThis sets up [continuous deployment](https://docs.netlify.com/site-deploys/create-deploys/#deploy-with-git) for your site's repo. Whenever you push new commits to your repo, Netlify starts the build process..\n\n#### Deploying manually via the CLI\n\nIf you wish to deploy from the CLI rather than using Git, you can use the command:\n\n```shell\nnetlify deploy --build\n```\n\nYou must use the `--build` flag whenever you deploy. This ensures that the Edge Functions that this starter site relies on are generated and available when you deploy your site.\n\nAdd `--prod` flag to deploy to production.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogramveins%2Finvente-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogramveins%2Finvente-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogramveins%2Finvente-web/lists"}