{"id":23118618,"url":"https://github.com/fabiliria280802/poke-qwik","last_synced_at":"2026-05-09T09:36:26.167Z","repository":{"id":217576169,"uuid":"744200185","full_name":"fabiliria280802/poke-qwik","owner":"fabiliria280802","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-22T14:42:35.000Z","size":1941,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T15:31:37.375Z","etag":null,"topics":["deno","pokemon","qwik","qwik-city","tailwind","typescript"],"latest_commit_sha":null,"homepage":"https://poke-qwik-jet.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fabiliria280802.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-01-16T20:19:03.000Z","updated_at":"2025-03-22T14:43:19.000Z","dependencies_parsed_at":"2024-01-17T07:01:33.993Z","dependency_job_id":"fa1025ef-ec3d-4fea-9478-a5d67368917e","html_url":"https://github.com/fabiliria280802/poke-qwik","commit_stats":null,"previous_names":["fabiliria280802/poke-qwik"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiliria280802%2Fpoke-qwik","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiliria280802%2Fpoke-qwik/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiliria280802%2Fpoke-qwik/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiliria280802%2Fpoke-qwik/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabiliria280802","download_url":"https://codeload.github.com/fabiliria280802/poke-qwik/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247108601,"owners_count":20884930,"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":["deno","pokemon","qwik","qwik-city","tailwind","typescript"],"created_at":"2024-12-17T05:19:09.247Z","updated_at":"2026-05-09T09:36:21.426Z","avatar_url":"https://github.com/fabiliria280802.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qwik City 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\n---\n\n## Project Structure\n\nThis project is using Qwik with [QwikCity](https://qwik.builder.io/qwikcity/overview/). QwikCity is just an extra set of tools on top of Qwik to make it easier to build a full site, including directory-based routing, layouts, and more.\n\nInside your project, you'll see the following directory structure:\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 an `index.tsx` file 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 and deployment\n\nUse the `npm run qwik add` command to add additional integrations. Some examples of integrations includes: Cloudflare, Netlify or Express Server, and the [Static Site Generator (SSG)](https://qwik.builder.io/qwikcity/guides/static-site-generation/).\n\n```shell\nnpm run qwik add # or `yarn qwik add`\n```\n\n\u003c!-- @import \"[TOC]\" {cmd=\"toc\" depthFrom=1 depthTo=6 orderedList=false} --\u003e\n\n## Development\n\nDevelopment mode uses [Vite's development server](https://vitejs.dev/). The `dev` command will server-side render (SSR) the output during development.\n\n```shell\nnpm start # or `yarn start`\n```\n\n\u003e Note: during dev mode, Vite may request a significant number of `.js` files. This does not represent a Qwik production build.\n\n## Preview\n\nThe preview command will create a production build of the client modules, a production build of `src/entry.preview.tsx`, and run a local server. The preview server is only for convenience to preview a production build locally and should not be used as a production server.\n\n```shell\nnpm run preview # or `yarn preview`\n```\n\n## Production\n\nThe production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.\n\n```shell\nnpm run build # or `yarn build`\n```\n\n## Deno Server\n\nThis app has a minimal [Deno server](https://deno.com/manual/examples/http_server) implementation. After running a full build, you can preview the build using the command:\n\n```\nnpm run serve\n```\n\nThen visit [http://localhost:8080/](http://localhost:8080/)\n\n## Config .env\n\nRename the file **.env.template** to **.env** and chance the environment variables.\n\n## Deploy\n\n## Express Server\n\nThis app has a minimal [Express server](https://expressjs.com/) implementation. After running a full build, you can preview the build using the command:\n\n```\nnpm run serve\n```\n\nThen visit [http://localhost:8080/](http://localhost:8080/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabiliria280802%2Fpoke-qwik","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabiliria280802%2Fpoke-qwik","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabiliria280802%2Fpoke-qwik/lists"}