/eletrize

Live Reload

Primary LanguageGoMIT LicenseMIT

Eletrize

Live reload for Golang and others

Go Report Card

Install

With go 1.23 or higher:

go install github.com/lasfh/eletrize@latest

Run simple command

$ eletrize run ./server "go build" --ext=.go --label="API" --env=.env

Run command

Detect files with names: eletrize.yml, eletrize.yaml, .eletrize.yml, .eletrize.yaml, eletrize.json, .eletrize.json and .eletrize (JSON format)'.

$ eletrize eletrize.yml

Run with specific schema

$ eletrize eletrize.yml --schema=NUMBER (>= 1)

Example configuration file

schema:
  - label: SCHEMA NAME
    workdir: ""
    envs:
      key: "value"
    env_file: ".env"
    watcher:
      path: "."
      recursive: true
      excluded_paths:
        - "frontend"
      extensions:
        - ".go"
        - ".js"
    commands:
      build:
        method: "go"
        args:
          - "build"
        envs:
          key: "value"
        env_file: ""
      run:
        - label: WORKER
          method: "./worker"
          envs:
            key: "value"
          env_file: ""