Openstatus www.openstatus.dev
at main 39 lines 593 B view raw view rendered
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# Install Dofigen 34cargo install dofigen 35# Update the dependent image versions 36dofigen update 37# Generate the Dockerfile 38dofigen gen 39```