aergolite
AergoLite: Trustless SQLite Replication
File Explorer
Download Latest Version (.zip)- ISSUE_TEMPLATE.md
- array.c
- backtrace.c
- base58.c
- checksum.c
- linked_list.c
- sha256.c
- sha256.h
- types.h
- aergolite.h
- chacha.c
- codec.c
- single_instance.c
- single_instance.h
- sqlite3.c
- sqlite3.h
- sqlite3ext.h
- stored_proc.c
- xrc4.c
- Dockerfile
- Dockerfile
- Dockerfile
- Dockerfile
- uv_callback.c
- uv_callback.h
- uv_functions.c
- uv_msg_framing.c
- uv_msg_framing.h
- uv_send_message.c
- allowed_nodes.c
- block_producer.c
- consensus.c
- no-leader.c
- no-leader.h
- node_discovery.c
- requests.c
- state_update.c
- transactions.c
- shell.c
- db_functions.c
- test.c
- .gitmodules
- build_amalgamation.c
- LICENSING
- makefile
- makeios
- README-ja.md
- README-ko.md
- README-pt.md
- README-ru.md
- README-zh.md
- README.md
- tools
# Installation Guide
git clone https://github.com/aergoio/aergolite
Downloads the entire project code from GitHub to your computer.
cd aergolite
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- APT (Debian/Ubuntu κ³μ΄) Built into Debian/Ubuntu-based Linux distributions.
- Homebrew A package manager for macOS/Linux.
sudo apt-get install git gcc make automake libtool libreadline-dev
Installs directly from the APT package repository (Debian/Ubuntu-based).
brew install automake libtool readline
Installs the pre-built package via Homebrew β no source build required.
Pulled directly from this repo's README.
3. Docker
Easy- 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.
make docker
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
4. Make
Medium- 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 docker
Compiles the code based on the generated build configuration to produce an executable.
make
Compiles the code based on the generated build configuration to produce an executable.
make install
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
make clean
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
