{"id":13594600,"url":"https://github.com/elk-zone/elk-native","last_synced_at":"2025-04-05T07:05:09.824Z","repository":{"id":65326375,"uuid":"575943914","full_name":"elk-zone/elk-native","owner":"elk-zone","description":"Native version of Elk, a nimble Mastodon web","archived":false,"fork":false,"pushed_at":"2024-06-25T08:19:26.000Z","size":16285,"stargazers_count":377,"open_issues_count":11,"forks_count":17,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-03-29T06:04:36.441Z","etag":null,"topics":["linux","macos","mastodon","mastodon-client","tauri-apps","windows"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/elk-zone.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-08T16:44:54.000Z","updated_at":"2025-03-22T11:36:26.000Z","dependencies_parsed_at":"2024-01-22T03:03:21.557Z","dependency_job_id":"95c6f9f1-fb70-4456-8f2f-ec5b7afdaa92","html_url":"https://github.com/elk-zone/elk-native","commit_stats":{"total_commits":181,"total_committers":16,"mean_commits":11.3125,"dds":"0.26519337016574585","last_synced_commit":"6fd2419ff242ea5705761f4afe1ece0f9aed9cbf"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elk-zone%2Felk-native","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elk-zone%2Felk-native/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elk-zone%2Felk-native/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elk-zone%2Felk-native/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elk-zone","download_url":"https://codeload.github.com/elk-zone/elk-native/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247299831,"owners_count":20916190,"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":["linux","macos","mastodon","mastodon-client","tauri-apps","windows"],"created_at":"2024-08-01T16:01:36.340Z","updated_at":"2025-04-05T07:05:09.803Z","avatar_url":"https://github.com/elk-zone.png","language":"Rust","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"180\" src=\"./logo.png\" alt=\"Elk native logo\"\u003e\n\u003c/p\u003e\n\u003ch3 align=\"center\"\u003eElk Native\u003c/h3\u003e\n\u003cbr/\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://chat.elk.zone\"\u003e\u003cimg src=\"https://img.shields.io/badge/chat-discord-blue?style=flat\u0026logo=discord\" alt=\"discord chat\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003cbr/\u003e\n\n\u003cbr\u003e\n\n\u003e [!WARNING]\n\u003e Elk Native is no longer maintained. [Elk](https://github.com/elk-zone/elk) can be used a [PWA](https://docs.elk.zone/pwa) instead.\n\n\u003cbr\u003e\n\nNative version of [Elk](https://github.com/elk-zone/elk), a nimble Mastodon web client.\n\nElk Native is even more early alpha than the web version, but we would love your feedback and contributions. If you would like to help us with testing, feedback, or contributing, join our [discord](https://chat.elk.zone) and get involved.\n\n![Screenshot of the app, showing the federated timeline home](./Screenshot-light.png#gh-light-mode-only)\n![Screenshot of the app, showing the federated timeline home](./Screenshot-dark.png#gh-dark-mode-only)\n\n# Contributing\n\nWe're really excited that you're interested in contributing to Elk! Please read through the small guide below to get started:\n\n\u003e Note: \n\u003e \u003cbr\u003e\n\u003e This repo only holds the code necessary for the native app and just git-submodules the frontend from https://github.com/elk-zone/elk so please submit Issues and PRs concerning the frontend there! \n\n## Local Setup\n\nFirst you will need to install Rust and other system dependencies required for developing a Tauri app, you can follow [this guide](https://tauri.app/v1/guides/getting-started/prerequisites).\n\nNext, you need to install the Tauri CLI which is used to orchestrate the build and package up the final app:\n\n```sh\ncargo install tauri-cli\n# or\nnpm install -g @tauri-apps/cli\n# or \npnpm install -g @tauri-apps/cli\n# or\nyarn add -g @tauri-apps/cli\n```\n\nNow clone the submodule in the `elk` folder.\n\n```\ngit submodule update --init elk\n```\n\nNext install the frontend dependencies:\n\n```\ncd elk \u0026\u0026 pnpm i\n```\n\nThen you can run the app in development mode:\n\n```\ncargo tauri dev\n```\n\nTo create a production build of the app:\n\n```\ncargo tauri build\n```\n\n## Logging\n\nThis app uses a unified logging stream that encompasses both logs from the Rust Core as well as from the frontend. Log levels and filters can be set through the `RUST_LOG` environment variable (this also works in a release mode app).\n\nFor more information on how to specify log levels and filters see [the env_logger docs](https://docs.rs/env_logger/latest/env_logger/index.html).\n\n## License\n\n[MIT](./LICENSE) \u0026copy; 2022-PRESENT Elk Native contributors\n","funding_links":[],"categories":["Rust"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felk-zone%2Felk-native","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felk-zone%2Felk-native","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felk-zone%2Felk-native/lists"}