Less3

(โ˜… 107)

Less3 is an S3-compatible object storage server that runs on your laptop, servers, just about anywhere!

  • .dockerignore
  • .gitignore
  • AWSCLI.md
  • AwsCliTest.bat
  • build-all.bat
  • build-dashboard.bat
  • build-server.bat
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • DATA_INTEGRITY.md
  • DOCKERHUB_README.md
  • DONATIONS.md
  • Less3.postman_collection
  • LICENSE.md
  • MIGRATING_V2_TO_V3.md
  • MIGRATING_V3_TO_V4.md
  • MINIO_CLIENT.md
  • MinioClientTest.bat
  • MULTINODE_SETUP.md
  • README.md
  • REST_API.md
  • S3_API.md

# Installation Guide

1. Get the code
git clone https://github.com/jchristn/Less3

Downloads the entire project code from GitHub to your computer.

cd Less3

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
cd Docker

Moves into the project folder you just downloaded.

docker compose up -d

Builds and starts all defined containers (server, database, etc.) at once, in the background.

docker compose -f compose.single.yaml up -d --build

Runs the command against the services defined in the compose file.

docker build -t less3:custom -f Less3/Dockerfile .

Builds a runnable image based on the Dockerfile.

โœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet build src/Less3.sln

Type this command into your terminal and run it.

dotnet run

Builds the project and runs it immediately.

dotnet run setup

Builds the project and runs it immediately.

dotnet publish src/Less3/Less3.csproj -c Release -o ./publish

Type this command into your terminal and run it.

dotnet Less3.dll

Type this command into your terminal and run it.

โœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

4. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install

Downloads and installs the libraries listed in package.json.

npm run build

Builds optimized production files.

npm run start

Starts the development/run server.

npm run dev

Starts the development/run server.

โœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation