elk/README.md

139 wiersze
5.7 KiB
Markdown
Czysty Zwykły widok Historia

<p align="center">
2022-12-28 23:03:00 +00:00
<a href="https://elk.zone" target="_blank" rel="noopener noreferrer">
2023-01-11 21:58:03 +00:00
<img width="160" height="160" src="./public/logo.svg" alt="Elk logo">
</a>
</p>
2023-01-11 21:58:03 +00:00
<h1 align="center"/>Elk <sup><em>alpha</em></sup></h1>
<p align="center">
A nimble Mastodon web client
</p>
<br/>
<p align="center">
<a href="https://chat.elk.zone"><img src="https://img.shields.io/badge/chat-discord-blue?style=flat&logo=discord" alt="discord chat"></a>
<a href="https://pr.new/elk-zone/elk"><img src="https://developer.stackblitz.com/img/start_pr_dark_small.svg" alt="Start new PR in StackBlitz Codeflow"></a>
<a href="https://volta.net/elk-zone/elk?utm_source=elk_readme"><img src="https://user-images.githubusercontent.com/904724/209143798-32345f6c-3cf8-4e06-9659-f4ace4a6acde.svg" alt="Open board on Volta"></a>
</p>
<br/>
2022-11-13 05:34:43 +00:00
2023-01-11 22:33:06 +00:00
<p align="center">
<a href="https://elk.zone/" target="_blank" rel="noopener noreferrer" >
<img src="./public/elk-og.png" alt="Elk screenshots" width="600" height="auto">
2023-01-11 22:33:06 +00:00
</a>
</p>
## ⚠️ Elk is in Alpha
2022-11-24 10:46:03 +00:00
2023-01-11 22:13:46 +00:00
It is already quite usable, but it isn't ready for wide adoption yet. We recommend you use it if you would like to help us build it. We appreciate your feedback and contributions. Check out the [Open Issues](https://github.com/elk-zone/elk/issues) and jump in the action. Join the [Elk discord server](https://chat.elk.zone) to chat with us and learn more about the project.
2022-11-24 10:46:03 +00:00
## Deployment
### Official Deployment
The Elk team maintains a deployment at:
2023-01-08 10:18:39 +00:00
- 🦌 Production: [elk.zone](https://elk.zone)
- 🐙 Canary: [main.elk.zone](https://main.elk.zone) (deploys on every commit to `main` branch)
### Ecosystem
These are known deployments using Elk as an alternative Web client for Mastodon servers or as a base for other projects in the fediverse:
- [elk.h4.io](https://elk.h4.io) - Use Elk for the `h4.io` Server
- [elk.universeodon.com](https://elk.universeodon.com) - Use Elk for the Universeodon Server
- [elk.vmst.io](https://elk.vmst.io) - Use Elk for the `vmst.io` Server
> **Note**: Community deployments are **NOT** maintained by the Elk team. It may not be synced with Elk's source code. Please do your own research about the host servers before using them.
2023-01-11 21:58:03 +00:00
## 💖 Sponsors
2023-01-11 22:13:46 +00:00
We are grateful for the generous sponsorship and help of:
2023-01-02 17:06:06 +00:00
<a href="https://nuxtlabs.com/" target="_blank" rel="noopener noreferrer" >
<img src="./images/nuxtlabs.svg" alt="NuxtLabs" height="85">
</a>
<br><br>
<a href="https://stackblitz.com/" target="_blank" rel="noopener noreferrer" >
<img src="./images/stackblitz.svg" alt="StackBlitz" height="85">
</a>
<br><br>
And all the companies and individuals sponsoring Elk Team and the members. If you're enjoying the app, consider sponsoring us:
2023-01-11 21:58:03 +00:00
- [Elk Team's GitHub Sponsors](https://github.com/sponsors/elk-zone)
2023-01-11 22:13:46 +00:00
Or you can sponsor our core team members individually:
2023-01-11 21:58:03 +00:00
- [Anthony Fu](https://github.com/sponsors/antfu)
- [Daniel Roe](https://github.com/sponsors/danielroe)
- [三咲智子 Kevin Deng](https://github.com/sponsors/sxzz)
- [Patak](https://github.com/sponsors/patak-dev)
We would also appreciate sponsoring other contributors to the Elk project. If someone helps you solve an issue or implement a feature you wanted, supporting them would help make this project and OS more sustainable.
2023-01-11 21:58:03 +00:00
## 📍 Roadmap
2023-01-08 10:18:39 +00:00
[Open board on Volta](https://volta.net/elk-zone/elk)
2023-01-11 21:58:03 +00:00
## 🧑‍💻 Contributing
2022-12-19 08:36:58 +00:00
We're really excited that you're interested in contributing to Elk! Before submitting your contribution, please read through the following guide.
### Online
2023-01-09 17:48:19 +00:00
You can use [StackBlitz Codeflow](https://stackblitz.com/codeflow) to fix bugs or implement features. You'll also see a Codeflow button on PRs to review them without a local setup. Once the elk repo has been cloned in Codeflow, the dev server will start automatically and print the URL to open the App. You should receive a prompt in the bottom-right suggesting to open it in the Editor or in another Tab. To learn more, check out the [Codeflow docs](https://developer.stackblitz.com/codeflow/what-is-codeflow).
[![Open in Codeflow](https://developer.stackblitz.com/img/open_in_codeflow.svg)](https://pr.new/elk-zone/elk)
### Local Setup
Clone the repository and run on the root folder:
```
pnpm i
pnpm run dev
```
`Warning`: you will need `corepack` enabled, check out the [Elk Contributing Guide](./CONTRIBUTING.md) for a detailed guide on how to set up the project locally.
We recommend installing [ni](https://github.com/antfu/ni#ni), that will use the right package manager in each of your projects. If `ni` is installed, you can instead run:
```
ni
nr dev
```
### Testing
Elk uses [Vitest](https://vitest.dev). You can run the test suite with:
```
nr test
```
2022-11-24 10:53:23 +00:00
2023-01-11 21:58:03 +00:00
## 🦄 Stack
2022-11-24 11:03:58 +00:00
2022-11-24 13:15:29 +00:00
- [Vite](https://vitejs.dev/) - Next Generation Frontend Tooling
2022-12-01 15:15:41 +00:00
- [Nuxt](https://nuxt.com/) - The Intuitive Web Framework
2022-11-24 13:15:29 +00:00
- [Vue](https://vuejs.org/) - The Progressive JavaScript Framework
- [VueUse](https://vueuse.org/) - Collection of Vue Composition Utilities
2022-11-24 11:03:58 +00:00
- [Pinia](https://pinia.vuejs.org/) - The Vue Store that you will enjoy using
2022-11-24 13:15:29 +00:00
- [Vue Macros](https://vue-macros.sxzz.moe/) - More macros and syntax sugar for Vue
2022-11-24 11:03:58 +00:00
- [UnoCSS](https://uno.antfu.me/) - The instant on-demand atomic CSS engine
2022-11-24 13:15:29 +00:00
- [Iconify](https://github.com/iconify/icon-sets#iconify-icon-sets-in-json-format) - Iconify icon sets in JSON format
- [Masto.js](https://neet.github.io/masto.js) - Mastodon API client in TypeScript
- [shiki](https://shiki.matsu.io/) - A beautiful Syntax Highlighter
2022-12-18 12:58:24 +00:00
- [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) - Prompt for update and push notifications
2022-11-24 11:03:58 +00:00
2023-01-16 05:28:57 +00:00
## 👨‍💻 Contributors
<a href="https://github.com/elk-zone/elk/graphs/contributors">
<img src="https://contrib.rocks/image?repo=elk-zone/elk" />
</a>
2023-01-11 21:58:03 +00:00
## 📄 License
2022-11-24 10:53:23 +00:00
2023-01-02 13:48:17 +00:00
[MIT](./LICENSE) &copy; 2022-PRESENT Elk contributors