Setup Guide - AumSahayata/cloudboxio GitHub Wiki
Setup for Windows
🔹 Using Releases (Windows)
- Download the
.exe
file from the latest release. - Move the
.exe
file into a new empty folder — it will auto-generate the required files. - After the first run, you can modify the configuration in the
.env
file. - Complete the admin setup by resetting the password.
🔹 Using the Repository
-
Clone the repository:
git clone https://github.com/yourusername/cloudboxio.git
-
Move into the repository directory:
cd cloudboxio
-
Install dependencies:
go mod tidy
-
Build the application:
go build .
-
Now you can proceed as described in Using Releases (Windows).
🔹 Setting Up a Development Environment
-
Install Go (version 1.24 or higher).
-
Clone the repository:
git clone https://github.com/yourusername/cloudboxio.git
-
Move into the repository:
cd cloudboxio
-
Install dependencies:
go mod tidy
-
You're now ready to begin developing!