nicebucket
A fast, private, open-source S3 GUI.
File Explorer
Download Latest Version (.zip)- build.yml
- close-issue.yml
- release.yml
- validate-pr-title.yml
- dependabot.yml
- demo.mov
- move-file.mov
- logo.png
- dashboard.e2e.ts
- dashboard.page.ts
- GeistMono.ttf
- e2e-test.sh
- seed-localstack.sh
- button.tsx
- card.tsx
- checkbox.tsx
- dialog.tsx
- dropdown-menu.tsx
- form-field.tsx
- input.tsx
- pagination.tsx
- select.tsx
- separator.tsx
- skeleton.tsx
- sonner.tsx
- file-tree-skeleton.tsx
- file-tree.tsx
- theme-toggle.tsx
- actions.ts
- constants.ts
- keyring-state.ts
- use-commands.ts
- use-dimensions.tsx
- use-theme.tsx
- utils.test.ts
- utils.ts
- mock-commands.ts
- bucket-list.tsx
- create-folder-button.tsx
- credentials-form.tsx
- dashboard.tsx
- delete-objects-dialog.tsx
- file-browser.tsx
- move-files-dialog.tsx
- object-list.tsx
- object-preview.tsx
- use-dashboard-context.tsx
- App.tsx
- bindings.ts
- globals.d.ts
- main.tsx
- styles.css
- vite-env.d.ts
- default.json
- ic_launcher.xml
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher_background.xml
- AppIcon-20x20@1x.png
- AppIcon-20x20@2x-1.png
- AppIcon-20x20@2x.png
- AppIcon-20x20@3x.png
- AppIcon-29x29@1x.png
- AppIcon-29x29@2x-1.png
- AppIcon-29x29@2x.png
- AppIcon-29x29@3x.png
- AppIcon-40x40@1x.png
- AppIcon-40x40@2x-1.png
- AppIcon-40x40@2x.png
- AppIcon-40x40@3x.png
- AppIcon-512@2x.png
- AppIcon-60x60@2x.png
- AppIcon-60x60@3x.png
- AppIcon-76x76@1x.png
- AppIcon-76x76@2x.png
- AppIcon-83.5x83.5@2x.png
- 128x128.png
- 128x128@2x.png
- 32x32.png
- 64x64.png
- icon.icns
- icon.ico
- icon.png
- Square107x107Logo.png
- Square142x142Logo.png
- Square150x150Logo.png
- Square284x284Logo.png
- Square30x30Logo.png
- Square310x310Logo.png
- Square44x44Logo.png
- Square71x71Logo.png
- Square89x89Logo.png
- StoreLogo.png
- s3_service.rs
- keyring.rs
- lib.rs
- main.rs
- s3.rs
- .gitignore
- build.rs
- Cargo.lock
- Cargo.toml
- tauri.conf.json
- .gitignore
- .prettierignore
- .prettierrc
- AGENTS.md
- bun.lock
- CHANGELOG.md
- components.json
- CONTRIBUTING.md
- docker-compose.yml
- eslint.config.mjs
- flake.lock
- flake.nix
- index.html
- LICENSE.md
- package.json
- README.md
- ROADMAP.md
- tsconfig.json
- vite.config.ts
- wdio.conf.js
# Installation Guide
1. Get the code
git clone https://github.com/nicebucket-org/nicebucket
Downloads the entire project code from GitHub to your computer.
cd nicebucket
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- 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.
docker compose up -d --build
Builds and starts all defined containers (server, database, etc.) at once, in the background.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
npm install
Downloads and installs the libraries listed in package.json.
npm start
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.
4. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cd src-tauri
This project's files live in a subfolder, so move into it first.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
