Creating a Flou project¶
-
Install
docker engine
if not already present. -
Create a new folder for your Flou project:
% mkdir my-project % cd my-project
-
Start a Python virtual environment and install Flou:
% python3 -m venv venv % source venv/bin/activate (venv) % pip install flou
-
Create an
app.py
file, the entrypoint for your Flou project and arequirements.txt
file for your project dependencies:(venv) % touch app.py (venv) % touch requirements.txt
-
Start Flou:
(venv) % flou compose up
Flou uses docker under the hood
Flou uses
docker compose
to easily manage all the needed processes with a friendly wrapper viaflou compose
.Flou is currently private
To run Flou you will need to run it in development mode or run a local docker registry.
-
Open the Flou Studio by visiting http://localhost:8001 .
-
You can find the Flou Api documentation in http://localhost:8000/docs .