{"id":44649767,"url":"https://github.com/datavisyn/app_template","last_synced_at":"2026-02-14T20:40:25.130Z","repository":{"id":92732729,"uuid":"584694999","full_name":"datavisyn/app_template","owner":"datavisyn","description":"App template for full-stack datavisyn apps.","archived":false,"fork":false,"pushed_at":"2025-01-13T13:02:12.000Z","size":16705,"stargazers_count":2,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-13T13:39:53.953Z","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":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/datavisyn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-03T09:23:02.000Z","updated_at":"2024-09-05T18:02:43.000Z","dependencies_parsed_at":"2023-11-09T12:04:20.493Z","dependency_job_id":"92d17c89-4267-4fac-ba21-5135a36208a6","html_url":"https://github.com/datavisyn/app_template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/datavisyn/app_template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datavisyn%2Fapp_template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datavisyn%2Fapp_template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datavisyn%2Fapp_template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datavisyn%2Fapp_template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/datavisyn","download_url":"https://codeload.github.com/datavisyn/app_template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datavisyn%2Fapp_template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29455362,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2026-02-14T20:40:24.466Z","updated_at":"2026-02-14T20:40:25.112Z","avatar_url":"https://github.com/datavisyn.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# app_template\n[![build](https://github.com/datavisyn/app_template/actions/workflows/build.yml/badge.svg)](https://github.com/datavisyn/app_template/actions/workflows/build.yml)\n\nApp template for full-stack datavisyn apps. The repository is split into frontend (`src`, `package.json`, ...) and backend (`app_template`, `Makefile`, `requirements.txt`, ...). Make sure you have Node 16 and the latest yarn version installed (and run `corepack enable`).\n\nTo get started, clone this repository:\n\n```bash\ngit clone -b develop https://github.com/datavisyn/app_template.git  # or any other branch you want to develop in\ncd app_template\n```\n\nFinally, replace all occurances of `app_template` with your new application name (i.e. also the folder `app_template`). Then delete the `.git` folder and initialize with a new repository.\n\n## Frontend\n\nThe frontend is a React application built and managed via [visyn_scripts](https://github.com/datavisyn/visyn_scripts). All relevant scripts can be found in the package.json.\n\n### Installation\n\nyarn 3 is used as package manager, such that you can simply install the frontend via `yarn install`.\n\n### Development\n\nThe application has many package.json scripts available, with one of them being `yarn start`. This will start the dev-server.\n\n### Linting\n\nAll sourcefiles are linted via ESLint and Prettier, which can be checked and auto-fixed via `yarn run lint[:fix]`.\n\n### Testing\n\nJest is used for unit-tests via `yarn run test`, and Cypress is used for e2e and component tests via `yarn run cy:run`. Alternatively, the Cypress UI can be started via `yarn run cy:open`.\n\n### Building\n\nFor generating a production build of the application (i.e. for deployment to Github Pages), simply run `yarn run bundle:prod` and the bundle will be in the `bundles/` folder.\n\n**Note:** The CI will automatically run the lint, build and test jobs, such that it makes sense to run them before committing. `yarn run all` runs all the relevant tasks.\n\n## Backend\n\nThe backend is a FastAPI server managed via [visyn_core](https://github.com/datavisyn/visyn_core). All relevant scripts can be found in the Makefile.\n\n### Installation\n\nIt is recommended to create a virtual environment to avoid cluttering the global installation directory.\n\n```bash\npython -m venv .venv  # create a new virtual environment\nsource .venv/bin/activate  # active it\nmake develop  # install all dependencies\n```\n\n### Development\n\nTo start the development server, simply run `python app_template` which will execute a uvicorn runner.\n\n### Linting\n\nAll sourcefiles are formatted and linted, which can be checked and auto-fixed via `make format` and `make lint`.\n\n### Testing\n\npytest is used for unit-tests via `make test`. See `app_template/tests` for details.\n\n**Note:** The CI will automatically run the lint, build and test jobs, such that it makes sense to run them before committing. `make all` runs all the relevant tasks.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatavisyn%2Fapp_template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdatavisyn%2Fapp_template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatavisyn%2Fapp_template/lists"}