Selfhosting
This content is not available in your language yet.
It is very easy to host your own Flow web server.
Simple server
Section titled “Simple server”Install flutter and build the app using:
cd appflutter pub getflutter build web
All the files are in the app/build/web
directory.
Docker
Section titled “Docker”Clone the repository and build the Dockerfile
using: docker build -t linwood-flow
.
Start the server using: docker run -p 8080:8080 -d linwood-flow
.