DLiteScript

Installation

Binary Downloads

Download the latest release for your platform from GitHub releases:

Installation Steps

  1. Download the binary for your platform

  2. Make the file executable (Not needed for Windows):

    chmod +x dlitescript-linux-x64
  3. Move the file to your PATH, to call the command from any directory (optional):

    For Unix-like systems:

    sudo mv dlitescript-linux-x64 /usr/local/bin/dlitescript

    For Windows:

    Move-Item dlitescript-win32-x64.exe $env:USERPROFILE\bin\dlitescript.exe
  4. Run DLiteScript:

    If not moved to PATH:

    ./dlitescript script.dl

    If moved to PATH:

    dlitescript script.dl

Building from Source

Prerequisites

Build Steps

  1. Clone the repository:

    git clone https://github.com/Dobefu/DLiteScript.git
    cd DLiteScript
  2. Download dependencies:

    go mod download
  3. Build the binary:

    go build -buildvcs
  4. Run DLiteScript:

    ./dlitescript your-script.dl
Improve this page