frugalos
Frugal Object Storage
File Explorer
Download Latest Version (.zip)- PULL_REQUEST_TEMPLATE.md
- buckets.md
- devices.md
- servers.md
- data_structures.md
- error_response.md
- terminology.md
- .gitignore
- bootstrap.sh
- Dockerfile
- frugalos.yml
- join.sh
- Dockerfile
- Dockerfile
- Dockerfile
- publish.sh
- README.md
- buckets.html
- devices.html
- servers.html
- config.proto
- state.proto
- builder.rs
- cluster.rs
- config.rs
- device_tree.rs
- error.rs
- lib.rs
- machine.rs
- protobuf.rs
- rpc.rs
- service.rs
- test_util.rs
- Cargo.toml
- LICENSE
- README.md
- lib.rs
- lump.rs
- serde_ext.rs
- tracer.rs
- Cargo.toml
- README.md
- empty.proto
- mds.proto
- handle.rs
- metrics.rs
- mod.rs
- node.rs
- snapshot.rs
- timeout.rs
- codec.rs
- config.rs
- error.rs
- lib.rs
- machine.rs
- protobuf.rs
- server.rs
- service.rs
- Cargo.toml
- LICENSE
- README.md
- raft.proto
- client.rs
- mail.rs
- mod.rs
- server.rs
- service.rs
- delete.rs
- load.rs
- mod.rs
- save.rs
- ballot.rs
- log.rs
- log_suffix.rs
- mod.rs
- lib.rs
- node.rs
- protobuf.rs
- raft_io.rs
- test_util.rs
- timer.rs
- util.rs
- .gitignore
- Cargo.toml
- LICENSE
- README.md
- dispersed_storage.rs
- ec.rs
- mds.rs
- mod.rs
- replicated_storage.rs
- storage.rs
- general_queue_executor.rs
- mod.rs
- repair_queue_executor.rs
- config.rs
- delete.rs
- error.rs
- lib.rs
- metrics.rs
- object.rs
- repair.rs
- rpc_server.rs
- segment_gc.rs
- segment_gc_manager.rs
- service.rs
- synchronizer.rs
- test_util.rs
- util.rs
- Cargo.toml
- LICENSE
- README.md
- frugalos-dashboard.json
- nine-nodes.yml
- single-node.yml
- ten-nodes.yml
- three-nodes.yml
- gen_delete_by_prefix_requests.sh
- gen_live_requests.sh
- gen_put_requests.sh
- gen_video_requests.sh
- http_requests.sh
- put_buckets.sh
- put_devices.sh
- all.sh
- basic.sh
- common.sh
- consistency.sh
- count_fragments.sh
- delete_fragment.sh
- delete_prefix.sh
- device.sh
- down.sh
- raftlog_recovery.sh
- repair.sh
- frugalos.env
- README.md
- system.proto
- build_frugalos_image.sh
- frugalos.yml
- install_rpms_centos7.sh
- install_rust_centos7.sh
- join_debug_servers.sh
- resume_cluster.sh
- sends_set_repair_idleness_threshold_to_local_cluster.sh
- setup_debug_cluster.sh
- bucket.rs
- mod.rs
- rpc_addr.rs
- set_repair_config.rs
- truncate_bucket.rs
- bucket.rs
- build_information.rs
- client.rs
- codec.rs
- config_server.rs
- daemon.rs
- device.rs
- error.rs
- http.rs
- lib.rs
- main.rs
- many_objects.rs
- recovery.rs
- rpc_server.rs
- server.rs
- service.rs
- .gitignore
- .travis.yml
- build.rs
- Cargo.lock
- Cargo.toml
- CONTRIBUTING.md
- Gemfile
- Gemfile.lock
- LICENSE
- Makefile
- package-lock.json
- package.json
- README.md
- Vagrantfile.example
# Installation Guide
1. Get the code
git clone https://github.com/frugalos/frugalos
Downloads the entire project code from GitHub to your computer.
cd frugalos
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.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f docker/frugalos-build/Dockerfile -t frugalos .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 frugalos
Runs the built image as an actual container.
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.
$ cargo install frugalos
Type this command into your terminal and run it.
If cargo build finishes without errors, it worked. The executable is created under target/.
Pulled directly from this repo's README.
5. Ruby
EasyPrerequisites
bundle install
Installs the Ruby libraries listed in the Gemfile.
If bundle install finishes without errors, continue with the run command from the README (e.g. rails server).
6. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
