{"id":21341009,"url":"https://github.com/yavin-dev/app","last_synced_at":"2025-07-12T14:33:41.188Z","repository":{"id":42518686,"uuid":"344255982","full_name":"yavin-dev/app","owner":"yavin-dev","description":"Rapidly build production quality analytics applications","archived":false,"fork":false,"pushed_at":"2022-04-01T18:59:58.000Z","size":3513,"stargazers_count":5,"open_issues_count":4,"forks_count":2,"subscribers_count":9,"default_branch":"master","last_synced_at":"2023-03-04T04:18:05.122Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://yavin.dev","language":"JavaScript","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/yavin-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"Code_of_Conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-03T20:32:08.000Z","updated_at":"2021-08-22T02:19:42.000Z","dependencies_parsed_at":"2022-09-12T12:11:41.439Z","dependency_job_id":null,"html_url":"https://github.com/yavin-dev/app","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yavin-dev%2Fapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yavin-dev%2Fapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yavin-dev%2Fapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yavin-dev%2Fapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yavin-dev","download_url":"https://codeload.github.com/yavin-dev/app/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225824809,"owners_count":17529906,"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":[],"created_at":"2024-11-22T00:54:32.339Z","updated_at":"2024-11-22T00:54:32.774Z","avatar_url":"https://github.com/yavin-dev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://yavin.dev\"\u003e\n    \u003cimg alt=\"yavin-logo\" src=\"assets/yavin-logo-transparent.svg\" height=\"150px\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003eYavin\u003c/h1\u003e\n\u003cp align=\"center\"\u003eRapidly build production quality analytics applications\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://yavin.dev\"\u003eDocs\u003c/a\u003e - \u003ca href=\"https://yavin-dev.github.io/framework\"\u003eDemo\u003c/a\u003e - \u003ca href=\"https://github.com/yavin-dev/framework/discussions\"\u003eCommunity\u003c/a\u003e\n\u003c/p\u003e\n\n## Yavin App\n\nYavin is a framework for rapidly building custom data applications that offers both a UI and an API. Yavin can also be deployed as a standalone business intelligence tool in a few simple steps. Build reports, assemble dashboards, and explore data with ad-hoc queries.\n\nThis is an example app built using the [Yavin Framework](https://github.com/yavin-dev/framework) showing a [Netflix dataset](https://www.kaggle.com/shivamb/netflix-shows) that is sourced from [Kaggle](https://www.kaggle.com/) data.\n\n## Getting Started\n\n### Quick start (no build required)\nLaunch demo app using latest yavin-app jar\n`curl https://raw.githubusercontent.com/yavin-dev/app/master/yavin-run.sh | bash`\n\n### Pre-requisites for local build\n-  Install Java 8 or greater (more info [here](https://yavin.dev/pages/guide/02-start.html#prerequisites))\n- `git clone https://github.com/yavin-dev/app.git`\n- `cd yavin-app`\n\n### Demo Data\nThe default build comes bundled with a demo data source running in H2 (in memory). To disable or remove the demo data source please do the following to the webservice build file (`ws/src/build.gradle.kts`):\n\nComment or remove following line and run the build commands.\n\n`implementation(\"dev.yavin\",\"demo-config\",\"0.10\")`\n\n### Start Yavin App\n\n- `./gradlew bootRun`\n- Open [http://localhost:8080](http://localhost:8080)\n\n### Build \u0026 Test Deployable Jar\n\n- Build \u0026 Test:`./gradlew build`\n- Build Only:`./gradlew build -x test`\n- Build For Prod:`./gradlew build -Penvironment=production`\n- Run Jar: `java -jar ws/build/libs/yavin-app*.jar`\n\n### Run Tests\n\n- Test All: `./gradlew test`\n- Test UI: `./gradlew ui:test`\n- Test WS: `./gradlew ws:test`\n \n### Clean Build\n\n- Clean All: `./gradlew clean`\n- Clean UI: `./gradlew ui:clean`\n- Clean WS: `./gradlew ws:clean`\n\n### Customize\n\n- Define your [DB config](./ws/src/main/resources/demo-configs/db/sql/DemoConnection.hjson) (currently loads data via the [create-demo-data.sql](./ws/src/main/resources/create-demo-data.sql) script)\n- Define your [table config](./ws/src/main/resources/demo-configs/models/tables/DemoTables.hjson)\n- Check out our [installation guide](https://yavin.dev/pages/guide/03-start.html#yavin-detailed-installation-guide) for more info\n\n## Resources\n\n[Yavin framework resources](https://github.com/yavin-dev/framework#resources)\n\nMore documentation can be found on [yavin.dev](https://yavin.dev)\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyavin-dev%2Fapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyavin-dev%2Fapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyavin-dev%2Fapp/lists"}