Releases: 07CalC/fyrer
Releases · 07CalC/fyrer
V0.1.91
v0.1.7
v0.1.5
v0.1.3
v0.1.3
Release date - October 22, 2025
Fyrer is a lightweight tool to run multiple development servers concurrently from a single terminal. It simplifies managing multi-service projects by allowing you to run all servers together with a single command.
features
- Run multiple dev servers concurrently
- Specify working directory for each server
- Language independent
- Set environment variables for each server
- Cross-platform: Linux, macOS, Windows
Installation
install using cargo:
cargo install fyrerbuild from source:
git clone https://github.com/07calc/fyrer
cd fyrer
cargo build --release
cargo install --path .Usage
run from fyrer.yml file:
fyrerexample config file fyrer.yml:
servers:
- name: server1
cmd: python -m http.server 8000
dir: ./project1
env:
PORT: 8000
ENV: dev
- name: server2
cmd: npm start
dir: ./project2Full Changelog: https://github.com/07CalC/fyrer/commits/v0.1.3