https://github.com/clupus/asdf-sqlite
A version manager for SQLite in the asdf-vm ecosystem
https://github.com/clupus/asdf-sqlite
asdf-plugin sqlite3 version-manager
Last synced: 5 months ago
JSON representation
A version manager for SQLite in the asdf-vm ecosystem
- Host: GitHub
- URL: https://github.com/clupus/asdf-sqlite
- Owner: cLupus
- License: unlicense
- Created: 2018-11-17T15:38:46.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-04-27T11:35:34.000Z (5 months ago)
- Last Synced: 2025-04-27T11:41:27.616Z (5 months ago)
- Topics: asdf-plugin, sqlite3, version-manager
- Language: Shell
- Size: 28.3 KB
- Stars: 9
- Watchers: 1
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asdf-sqlite
[](https://github.com/cLupus/asdf-sqlite/actions/workflows/build.yml) [](https://github.com/cLupus/asdf-sqlite/actions/workflows/lint.yml)
[SQLite](https://www.sqlite.org) plugin for [asdf](https://github.com/asdf-vm/asdf) version manager
## Requirements
It uses curl, C compiler & dev tools and file. In Ubuntu or similar Debian systems:
```bash
apt install curl build-essential file
```In Dockerfile:
```dockerfile
RUN DEBIAN_FRONTEND=noninteractive apt install -y curl build-essential file
```## Install
Install the plugin:
```bash
asdf plugin-add sqlite
```### Compilation options
By default, SQLite will be compiled with most of [the recommended compile-time options](https://sqlite.org/compile.html#recommended_compile_time_options) are enabled.
Additionally, multiple [optional features](https://sqlite.org/compile.html#_options_to_enable_features_normally_turned_off) are enabled to amke SQLite mure useful.If you would like to override the compile options, you may set the environment variable `ASDF_SQLITE_ENABLED_FEATURES` as desired.
## Use
Check [asdf](https://github.com/asdf-vm/asdf) readme for instructions on how to install & manage versions of SQLite.