{"id":31642411,"url":"https://github.com/derthorsten/xeus-sqlite-demo","last_synced_at":"2025-10-07T03:59:21.599Z","repository":{"id":302856467,"uuid":"1013735754","full_name":"DerThorsten/xeus-sqlite-demo","owner":"DerThorsten","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-04T12:02:52.000Z","size":1819,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-04T12:54:40.540Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","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/DerThorsten.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":"2025-07-04T11:32:49.000Z","updated_at":"2025-07-04T12:02:55.000Z","dependencies_parsed_at":"2025-07-04T13:38:12.476Z","dependency_job_id":"d26f9b80-835f-4719-b6ea-6591a7cc6955","html_url":"https://github.com/DerThorsten/xeus-sqlite-demo","commit_stats":null,"previous_names":["derthorsten/xeus-sqlite-demo"],"tags_count":0,"template":false,"template_full_name":"jupyterlite/xeus-lite-demo","purl":"pkg:github/DerThorsten/xeus-sqlite-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-sqlite-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-sqlite-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-sqlite-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-sqlite-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DerThorsten","download_url":"https://codeload.github.com/DerThorsten/xeus-sqlite-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-sqlite-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278717442,"owners_count":26033542,"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-10-07T02:00:06.786Z","response_time":59,"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-10-07T03:59:17.573Z","updated_at":"2025-10-07T03:59:21.585Z","avatar_url":"https://github.com/DerThorsten.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Xeus-Lite demo\n\n[![lite-badge](https://jupyterlite.rtfd.io/en/latest/_static/badge.svg)](https://derthorsten.github.io/xeus-sqlite-demo/notebooks/?path=demo.ipynb)\n\nThis GitHub template allows you to create deployments of JupyterLite with a custom set of conda packages.\n\n## 💡 How to make your own deployment\n\nCreating a new deployment can be done in three easy steps:\n\n**Step 1: Apply the GitHub template**\n\n1. Click the **\"Use this template\"** button in the upper right corner of the GitHub repository.\n2. Choose a name for your project and select the GitHub organization where you want to create it.\n3. Then hit **\"Create repository from template\"** to finalize the setup.\n\n**Step 2: Enable building the GitHub pages from GitHub actions.**\n\n1. Once your repository is created, enable GitHub Pages by configuring GitHub Actions. This will build and deploy your site automatically.\n2. Your deployment will be accessible at the following URL: https://{USERNAME}.github.io/{DEMO_REPO_NAME}.\n\n**Step 3: Customize your conda environment**\n\n1. Update your ``environment.yml`` file to include the required packages.\n2. This ensures that your environment has all the necessary dependencies.\n\n## 🎬 Visual Guide\n\nFor a step-by-step visual guide, check out the screencast below:\n\n![Deploy your own](deploy.gif)\n\n## 📦 How to install kernels and packages\n\nYou can install specific kernels and extra packages by adding them to the ``environment.yml`` file.\n\nSee https://jupyterlite-xeus.readthedocs.io/en/latest/environment.html for more documentation.\n\n### Example 1: JupyterLite with NumPy and Matplotlib\n\nTo create a JupyterLite deployment with NumPy and Matplotlib pre-installed, edit the ``environment.yml`` file as follows:\n\n```yml\nname: xeus-kernel\nchannels:\n  - https://repo.prefix.dev/emscripten-forge-dev\n  - https://repo.prefix.dev/conda-forge\ndependencies:\n  - xeus-python\n  - numpy\n  - matplotlib\n```\n\n### Example 2: JupyterLite with R and coursekata\n\nTo use the R kernel and the coursekata package, edit the environment.yml file as follows:\n\n```yml\nname: xeus-kernel\nchannels:\n  - https://repo.prefix.dev/emscripten-forge-dev\n  - https://repo.prefix.dev/conda-forge\ndependencies:\n  - xeus-r\n  - r-coursekata\n```\n\n### Example 3: JupyterLite with C++\n\nTo use the C++ kernel, edit the environment.yml file as follows:\n\n```yml\nname: xeus-kernel\nchannels:\n  - https://repo.prefix.dev/emscripten-forge-dev\n  - https://repo.prefix.dev/conda-forge\ndependencies:\n  - xeus-cpp\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderthorsten%2Fxeus-sqlite-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderthorsten%2Fxeus-sqlite-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderthorsten%2Fxeus-sqlite-demo/lists"}