{"id":20283222,"url":"https://github.com/binhtran432k/cv","last_synced_at":"2025-05-07T18:31:19.016Z","repository":{"id":205462007,"uuid":"661520890","full_name":"binhtran432k/cv","owner":"binhtran432k","description":"Curriculum Vitae of Binh Duc Tran","archived":false,"fork":false,"pushed_at":"2024-03-23T06:06:52.000Z","size":656,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-03-23T07:25:19.199Z","etag":null,"topics":["bun","curriculum-vitae","cv","qwik","qwik-city","vite"],"latest_commit_sha":null,"homepage":"https://cv.binhtran432k.com/","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/binhtran432k.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}},"created_at":"2023-07-03T04:11:13.000Z","updated_at":"2024-03-23T07:25:20.739Z","dependencies_parsed_at":"2024-03-23T07:25:19.683Z","dependency_job_id":"0c79f1f2-1643-4f92-8ba4-57ff8654e3a0","html_url":"https://github.com/binhtran432k/cv","commit_stats":null,"previous_names":["binhtran432k/cv"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhtran432k%2Fcv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhtran432k%2Fcv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhtran432k%2Fcv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhtran432k%2Fcv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/binhtran432k","download_url":"https://codeload.github.com/binhtran432k/cv/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224632765,"owners_count":17343926,"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":["bun","curriculum-vitae","cv","qwik","qwik-city","vite"],"created_at":"2024-11-14T14:13:49.220Z","updated_at":"2024-11-14T14:13:49.818Z","avatar_url":"https://github.com/binhtran432k.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Personal Curriculum Vitae ⚡️\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## Description\n\nThis project showcases a personal CV built using Qwik, a high-performance web\nframework known for its speed, efficiency, and developer experience. It\ndemonstrates the following capabilities:\n\n- **Dynamic and Interactive Presentation**: Leverages Qwik's innovative techniques\n  to create a visually appealing and engaging CV, potentially using elements\n  like animations or interactive components.\n- **Optimized for Browser Printing**: Ensures seamless formatting and presentation\n  quality when printed for physical copies, adhering to standard CV layouts or\n  your desired design choices.\n- **Modern Web Technology Expertise**: Highlights proficiency in Qwik, a rapidly\n  evolving framework with a growing community and gaining traction in the web\n  development landscape.\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 `bun 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\nbun qwik add # or `bun qwik add`\n```\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\nbun 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## Lefthook\n\nYou can also use the optional Lefthook to check Prettier and ESLint before commit. [Lefthook.yml](./lefthook.yml) powers this functionality.\n\n```\nlefthook install\n```\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\nbun 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\nbun build\n```\n\n## Static Site Generator (Node.js)\n\n```shell\nbun build # You must build first\nbun build.server\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhtran432k%2Fcv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbinhtran432k%2Fcv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhtran432k%2Fcv/lists"}