Openstatus www.openstatus.dev
1# Workflows 2 3## Development 4 5To install dependencies: 6 7```sh 8bun install 9``` 10 11To run: 12 13```sh 14bun run dev 15``` 16 17open <http://localhost:3000> 18 19## Deploy 20 21From root 22 23```bash 24flyctl deploy --config apps/workflows/fly.toml --dockerfile apps/workflows/Dockerfile 25``` 26 27## Docker 28 29The Dockerfile is generated thanks to [Dofigen](https://github.com/lenra-io/dofigen). 30To generate the Dockerfile, run the following command from the `apps/workflows` directory: 31 32```bash 33# Update the dependent image versions 34dofigen update 35# Generate the Dockerfile 36dofigen gen 37```