Set a variable
List variables
Remove a variable
How it works
- You set a variable with
floo env set - The value is encrypted at rest in the floo database
- On deploy, all env vars are decrypted and injected into the Cloud Run container
- Your app reads them with
process.env.KEY(Node),os.environ["KEY"](Python), oros.Getenv("KEY")(Go)
Best practices
- Don’t commit secrets. Use
floo env setinstead of.envfiles in your repo. - Use descriptive key names.
DATABASE_URL,REDIS_URL,STRIPE_SECRET_KEY. - One variable per command.
floo env settakes a singleKEY=VALUEpair.
For agents
env list: