Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[APP] AppFlowy #3466

Draft
wants to merge 34 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6920ecf
Create docker-compose.yml
Wraithers May 12, 2024
390ac09
Create config.json
Wraithers May 12, 2024
9b6b292
Create description.md
Wraithers May 12, 2024
5fcab8d
Add files via upload
Wraithers May 12, 2024
e1e7f7a
Update docker-compose.yml
Wraithers May 12, 2024
94b7799
Update docker-compose.yml
Wraithers May 12, 2024
38492ab
Update apps/appflowy/metadata/description.md
Wraithers May 12, 2024
d2dbf51
Update apps/appflowy/metadata/description.md
Wraithers May 12, 2024
667ea66
Update apps/appflowy/metadata/description.md
Wraithers May 12, 2024
0a07599
Update apps/appflowy/metadata/description.md
Wraithers May 12, 2024
7122933
Update apps/appflowy/metadata/description.md
Wraithers May 12, 2024
48d1c26
Add files via upload
Wraithers May 12, 2024
40af999
Update docker-compose.yml
Wraithers May 12, 2024
6a75eab
Update config.json
Wraithers May 12, 2024
ddc6e6f
Update docker-compose.yml
Wraithers May 12, 2024
4a0e17f
Delete apps/appflowy/metadata/logo.png
Wraithers May 12, 2024
b274140
Update docker-compose.yml
Wraithers May 12, 2024
b34cfc9
Merge branch 'runtipi:master' into appflowy
Wraithers May 13, 2024
59e7b82
Fix issues with docker-compose.yml
Wraithers May 13, 2024
5716d82
Merge branch 'runtipi:master' into appflowy
Wraithers May 13, 2024
570debd
Merge branch 'runtipi:master' into appflowy
Wraithers May 13, 2024
047eadc
Merge branch 'runtipi:master' into appflowy
Wraithers May 14, 2024
3a9b2c8
Merge branch 'runtipi:master' into appflowy
Wraithers May 14, 2024
43d339e
Merge branch 'runtipi:master' into appflowy
Wraithers May 17, 2024
4e62b93
Merge branch 'runtipi:master' into appflowy
Wraithers May 20, 2024
3244783
Merge branch 'runtipi:master' into appflowy
Wraithers May 20, 2024
4088ce7
Merge branch 'runtipi:master' into appflowy
Wraithers May 21, 2024
95e4afe
Merge branch 'runtipi:master' into appflowy
Wraithers May 21, 2024
e4ef252
Merge branch 'runtipi:master' into appflowy
Wraithers May 23, 2024
f9372a2
Merge branch 'runtipi:master' into appflowy
Wraithers May 23, 2024
a3ae49e
Merge branch 'runtipi:master' into appflowy
Wraithers May 23, 2024
d518a49
Merge branch 'runtipi:master' into appflowy
Wraithers May 25, 2024
6dcc9fd
Merge branch 'runtipi:master' into appflowy
Wraithers Jun 3, 2024
2f0d6a9
Merge branch 'master' into appflowy
JigSawFr Jun 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions apps/appflowy/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "../schema.json",
"name": "AppyFlowy",
"available": true,
"exposable": true,
"port": 8042,
"id": "appflowy",
"tipi_version": 1,
"version": "0.5.7",
"categories": [
"utilities"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

category "ai" should also be added ;)

],
"description": "AppFlowy is an AI-powered secure workspace where you achieve more without losing control of your data.",
"short_desc": "AppFlowy is an open-source alternation to Notion. You are in charge of your data and customizations.",
"author": "AppFlowy-IO",
"source": "https://github.com/AppFlowy-IO/AppFlowy",
"form_fields": [],
"supported_architectures": [
"arm64",
"amd64"
]
}
19 changes: 19 additions & 0 deletions apps/appflowy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: "3.3"
services:
appflowy_client:
container_name: appflowy
image: appflowyio/appflowy_client:main
ports:
- ${APP_PORT}:80
- 8043:443
volumes:
- $HOME/.Xauthority:/root/.Xauthority:rw
- /tmp/.X11-unix:/tmp/.X11-unix
- /dev/dri:/dev/dri
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
- ${APP_DATA_DIR}/data:/home/appflowy
environment:
- DISPLAY=${DISPLAY}
restart: unless-stopped
networks:
- tipi_main_network
87 changes: 87 additions & 0 deletions apps/appflowy/metadata/description.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<h1 align="center" style="border-bottom: none">
<b>
<a href="https://www.appflowy.io">AppFlowy.IO</a><br>
</b>
⭐️ The Open Source Alternative To Notion ⭐️ <br>
</h1>

<p align="center">
You are in charge of your data and customizations.
</p>

<p align="center">
<a href="https://discord.gg/9Q2xaN37tV"><img src="https://img.shields.io/badge/AppFlowy.IO-discord-orange"></a>
Wraithers marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://github.com/AppFlowy-IO/appflowy"><img src="https://img.shields.io/github/stars/AppFlowy-IO/appflowy.svg?style=flat&logo=github&colorB=deeppink&label=stars"></a>
Wraithers marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://github.com/AppFlowy-IO/appflowy"><img src="https://img.shields.io/github/forks/AppFlowy-IO/appflowy.svg"></a>
Wraithers marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://opensource.org/licenses/AGPL-3.0"><img src="https://img.shields.io/badge/license-AGPL-purple.svg" alt="License: AGPL"></a>

</p>

<p align="center">
<a href="https://www.appflowy.io"><b>Website</b></a> •
<a href="https://discord.gg/9Q2xaN37tV"><b>Discord</b></a> •
<a href="https://twitter.com/appflowy"><b>Twitter</b></a>
</p>

<p align="center"><img src="https://user-images.githubusercontent.com/12026239/236664610-fc209a97-815e-4716-af07-d94a859d1907.png" alt="AppFlowy Docs & Notes & Wikis" width="1000px" /></p>
<p align="center"><img src="https://user-images.githubusercontent.com/12026239/236664628-5def2450-914a-4b2d-b907-92b7476b9863.png" alt="AppFlowy Databases for Tasks and Projects" width="1000px" /></p>
<p align="center"><img src="https://user-images.githubusercontent.com/12026239/236664642-22e26c1b-5eae-4635-9aa6-b12ecf1c3c46.png" alt="AppFlowy Kanban Board for To-Dos" width="1000px" /></p>
<p align="center"><img src="https://github.com/AppFlowy-IO/AppFlowy/assets/12026239/6be93d2b-a5c5-48a9-b7cf-c599d5f5140c" alt="AppFlowy Calendars for Plan and Manage Content" width="1000px" /></p>
<p align="center"><img src="https://user-images.githubusercontent.com/12026239/236664657-dc5291f3-67b0-4a43-a818-640e92735deb.png" alt="AppFlowy OpenAI GPT Writers" width="1000px" /></p>

## Built With

- [Flutter](https://flutter.dev/)

- [Rust](https://www.rust-lang.org/)

## Stay Up-to-Date

<p align="center"><img src="https://github.com/AppFlowy-IO/appflowy/blob/main/doc/imgs/howtostar.gif" alt="AppFlowy Github - how to star the repo" width="100%" /></p>

## Getting Started with development

Please view the [documentation](https://docs.appflowy.io/docs/documentation/appflowy/from-source) for OS specific development instructions
Wraithers marked this conversation as resolved.
Show resolved Hide resolved

## Roadmap

- [AppFlowy Roadmap ReadMe](https://docs.appflowy.io/docs/appflowy/roadmap)
- [AppFlowy Public Roadmap](https://github.com/orgs/AppFlowy-IO/projects/5/views/12)

If you'd like to propose a feature, submit a feature request [here](https://github.com/AppFlowy-IO/AppFlowy/issues/new?assignees=&labels=&template=feature_request.yaml&title=%5BFR%5D+) <br/>
If you'd like to report a bug, submit a bug report [here](https://github.com/AppFlowy-IO/AppFlowy/issues/new?assignees=&labels=&template=bug_report.yaml&title=%5BBug%5D+)
Wraithers marked this conversation as resolved.
Show resolved Hide resolved

## **Releases**

Please see the [changelog](https://www.appflowy.io/whatsnew) for more details about a given release.

## Contributing

Contributions make the open-source community a fantastic place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. Please look at [Contributing to AppFlowy](https://docs.appflowy.io/docs/documentation/software-contributions/contributing-to-appflowy) for details.

If your Pull Request is accepted as it fixes a bug, adds functionality, or makes AppFlowy's codebase significantly easier to use or understand, **Congratulations!** If your administrative and managerial work behind the scenes sustains the community, **Congratulations!** You are now an official contributor to AppFlowy. Get in touch with us ([link](https://tally.so/r/mKP5z3)) to receive the very special Contributor T-shirt!
Wraithers marked this conversation as resolved.
Show resolved Hide resolved
Proudly wear your T-shirt and show it to us by tagging [@appflowy](https://twitter.com/appflowy) on Twitter.

## Translations 🌎🗺

[![translation badge](https://inlang.com/badge?url=github.com/AppFlowy-IO/AppFlowy)](https://inlang.com/editor/github.com/AppFlowy-IO/AppFlowy?ref=badge)

To add translations, you can manually edit the JSON translation files in `/frontend/resources/translations`, use the [inlang online editor](https://inlang.com/editor/github.com/AppFlowy-IO/AppFlowy), or run `npx inlang machine translate` to add missing translations.

## Join the community to build AppFlowy together

<a href="https://github.com/AppFlowy-IO/AppFlowy/graphs/contributors">
<img src="https://contrib.rocks/image?repo=AppFlowy-IO/AppFlowy" />
Wraithers marked this conversation as resolved.
Show resolved Hide resolved
</a>

## License

Distributed under the AGPLv3 License. See [`LICENSE.md`](https://github.com/AppFlowy-IO/AppFlowy/blob/main/LICENSE) for more information.

## Acknowledgements

Special thanks to these amazing projects which help power AppFlowy.IO:
Wraithers marked this conversation as resolved.
Show resolved Hide resolved

- [flutter-quill](https://github.com/singerdmx/flutter-quill)
- [cargo-make](https://github.com/sagiegurari/cargo-make)
- [contrib.rocks](https://contrib.rocks)
Binary file added apps/appflowy/metadata/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading