Setup Guide - AumSahayata/cloudboxio GitHub Wiki

Setup for Windows

🔹 Using Releases (Windows)

  1. Download the .exe file from the latest release.
  2. Move the .exe file into a new empty folder — it will auto-generate the required files.
  3. After the first run, you can modify the configuration in the .env file.
  4. Complete the admin setup by resetting the password.

🔹 Using the Repository

  1. Clone the repository:

    git clone https://github.com/yourusername/cloudboxio.git
    
  2. Move into the repository directory:

    cd cloudboxio
    
  3. Install dependencies:

    go mod tidy
    
  4. Build the application:

    go build .
    
  5. Now you can proceed as described in Using Releases (Windows).


🔹 Setting Up a Development Environment

  1. Install Go (version 1.24 or higher).

  2. Clone the repository:

    git clone https://github.com/yourusername/cloudboxio.git
    
  3. Move into the repository:

    cd cloudboxio
    
  4. Install dependencies:

    go mod tidy
    
  5. You're now ready to begin developing!