Appflowly, an OpenSource alternative to Notion.so

Hi all,
Do you know Notion (Notion – Tous vos documents. Toutes vos équipes. Un seul espace de travail.)?
I’ve played with it a bit, and it seems that it can be very useful and can do a lot of things.
But it is not open source and all the data is stored on their server.

An alternative exists: Appflowy

Has anyone used it yet?
Would it be difficult to add it to Yunohost?

Connaissez-vous Notion (Notion – Tous vos documents. Toutes vos équipes. Un seul espace de travail.) ?
J’ai joué un peu avec, et il semble qu’il puisse être très utile et permet de faire beaucoup de chose.
Mais il n’est pas open source et toutes les données sont stockées sur leur serveur.

Une alternative existe : Appflowy

Est-ce que quelqu’un l’a déjà utilisé ?
Serait-ce difficile de l’ajouter à Yunohost ?

Cyril

3 Likes

Bonjour Cyril,

Yes I know Notion, and I’ve already tried AppFlowy several times.
The amount of stars they got on Github is quite crazy compared to… the quality of the app. I guess it’s only related to their main statement as being the “open-source alternative to Notion”, which is honestly a complete bullshit statement as of now…

They provide their app as a desktop release so no need for Yunohost to try it. Just download and run, and you’ll see. It’s still more than early stage, and I would even say not yeet usable as a notes app.
For the sync / online part, nothing has started yet, so you can only use it as a local desktop app.

It’s probably worth checking from time to time !

You can also have a look at Anytype, which starts to be a very good app (and IMHO much more promising in the long run) https://anytype.io. The team has promised that they would release it as a open source but everybody is still waiting. Also, to get to try it you’ll need to register on a form, then wait for 2 weeks, then have to attend a one hour zoom call with the team before you can get a link to download.

2 Likes

Hello Limezy,
So I was misled by the marketing.
I didn’t check the installation procedure, I thought it was a web application.

They also have an “AppFlowy-Server” repository, but there is no explanation.

But! I know “AnyType”, I sent a mail 2 months ago, then I forgot…
I will try again.

Appflowly looks good, there are other alternatives to the notion, like Loqseq which is also free

Thanks

2 Likes

Yes, Logseq is pretty good and I have used it a little bit on its very beginnings one year and a half ago (now replaced by Obsidian - not open source but better suited for my needs - for the desktop part and Outline for the online - publishing part. You can also try Athens Research, similar to Logseq with less features but multi user and far better looking.

As far as I know Logseq didn’t really release a “web server” version, and I don’t think they will.
Athens has, based on Docker. I should try to package it one day… But I’m still waiting for them to release a first polished version with a mobile app.

2 Likes

Hey I just found this alternative, Affine GitHub - toeverything/AFFiNE: There can be more than Notion and Miro. Affine is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use. it looks really fresh, flagged as non production ready. But very promising.

6 Likes

Salut!

Est-ce que tu l’as testé sur Yunohost finalement ?

Je l’ai installé mais il semble y avoir un problème au niveau de l’étape de connexion/création de compte.

Erreurs :

  • Error: none, error_description: none, msg: Some(“invalid login credentials”)
  • Code 422, msg: Signups not allowed for this instance, error_ID: none

Merci,

Salut @blodarn,
non, je ne l’ai pas testé, je n’avais pas vu que l’appli était dispo dans la liste des applications.

Tu pourrais tenter de déposer un ticket sur le github de AppFlowly ?

Cyril

Ok, c’est fait.

Login using the email not the username

Yes, email or username, same error unfortunately.

Can you share your app version, yunohost version ? Did you define the password before installing? Do you have special characters in your password?

Sorry for answering 6 days after.

Can you share your app version, yunohost version ?

  • AppFlowy : 0.9.18~ynh2
  • Yunohost : 12.0.11 (stable)

Did you define the password before installing?

  • User was already created.
  • No password to enter during installation.

Do you have special characters in your password?

  • No, only letters and numbers.

Did you get this figured out? I’m running into the same issue. :sweat_smile:

Nop :frowning: Still the same problem. Can’t login weither I use email or username…

hello i use and test but not yet tested on hosted version

Hi,

I managed to login to AppFlowy (host by YunoHost) using email and password but to do this you need to comment the following lineS in your appflowy.domain.conf :

access_by_lua_file /usr/share/ssowat/access.lua;

As suggested by Appflowy maintainer on discord, I also added this:

underscores_in_headers on;

But I also had to modify the WebSocket section as below:

# WebSocket
location /ws {
    proxy_pass http://192.168.81.14:8000; # localhost did not work

    proxy_http_version 1.1;
    #proxy_set_header Upgrade $http_upgrade; 
    proxy_set_header Connection "Upgrade";
    #proxy_set_header Host $host;  # Commented: see https://stackoverflow.com/questions/51381015/nginx-proxy-of-springboot-websocket-returns-400-due-to-upgrade-header-null-w
    proxy_set_header Upgrade 'websocket';
    proxy_read_timeout 86400;
}

Although all of this, sync does not work well:

  • modifying a space name works
  • adding pages does not sync accross devices (pages that are added on iPhone are not visible on computer app)

Any ideas about this ?