How to install appflowy
How to self-host appflowy. Trello alternative
What is Appflowy
AppFlowy is an open-source alternative to tools like Notion, designed for collaborative note-taking, project management, and knowledge organization. Built with a focus on privacy and self-hosting, it lets you run your own workspace without relying on third-party cloud providers. With features such as databases, tasks, and customizable views, AppFlowy gives you full control over your data while still offering a modern, flexible productivity platform.
What is docker
Docker is an open-source platform that makes it easy to build, package, and run applications in lightweight, portable containers. A container is like a mini virtual environment that bundles together an application with all its dependencies (libraries, configurations, runtime, etc.) so it runs the same way on any machine. Unlike traditional virtual machines, containers donât need a full operating system â they share the hostâs kernel â which makes them much faster and more efficient. Developers use Docker to avoid the classic âit works on my machineâ problem, because containers ensure consistency across development, testing, and production environments. Itâs widely used for microservices, cloud deployments, and modern DevOps workflows.
Hands on!
This is a summary, but I will be following this document.
Clone the repository:
git clone https://github.com/AppFlowy-IO/AppFlowy-CloudMove to the repositoryâs root folder:
cd AppFlowy-CloudCopy the deployment environment example into a .env file:
cp deploy.env .envYouâll need to modify the .env file.
Pay close attention to the .env file, as this is where all your important settings are defined.
This is what the .env file looks like:

Normally, this is where youâd put the serverâs domain, for example on AWS EC2. But in this case, weâll set it to localhost for now, make sure AppFlowy works, and then âredirectâ it through Tailscale using the domain Tailscale provides.
FQDN=localhost
Try not to use special characters in these passwords.
Set a secure password for the Postgres variable.
POSTGRES_PASSWORD=password
Example: DYkJcVWARzW8zUey7kpbe0YyjUuxB0
Fill in the AWS access keys.
Fill the admin user and password. (No need to have a real email)
Fill in the JWT
GOTRUE_JWT_SECRET=hello456
I wonât fill in the SMTP server because I wonât be using it, but if youâre planning to use this in a team setting, you may need to configure those settings as well.

Fill in the PGADMIN fields
Save the file
Start the docker service
Start the docker service:
docker compose up -d
You should see an output similar to this:

Once everything is up and running, youâll see something like this:

Then you can navigate to http://localhost and you should see the login page.

You can log in with the admin@example.com email and the password you set earlier.
Click on Continue with password.
Great â that means your server setup is done đ
Now what? Well, you can continue with Home server: Tailscale + docker

â¨đ§ New dark magic spell unlocked!
Last updated