webdis
A Redis HTTP interface with JSON output
File Explorer
Download Latest Version (.zip)- build.yml
- codeql.yml
- webdis-ci.json
- README.md
- webdis-cosign-signatures.md
- webdis-docker-content-trust.md
- webdis-docker-external-redis.md
- webdis-docker-serve-rdb-file.md
- webdis-redis-docker-compose-ssl.md
- webdis-redis-docker-compose.md
- cencode.c
- cencode.h
- common.c
- common.h
- custom-type.c
- custom-type.h
- json.c
- json.h
- msgpack.c
- msgpack.h
- raw.c
- raw.h
- ae.h
- glib.h
- ivykis.h
- libev.h
- libevent.h
- libuv.h
- macosx.h
- qt.h
- example-ae.c
- example-glib.c
- example-libev.c
- example-libevent.c
- example-libuv.c
- example.c
- .gitignore
- .travis.yml
- alloc.c
- alloc.h
- async.c
- async.h
- async_private.h
- CHANGELOG.md
- COPYING
- dict.c
- dict.h
- fmacros.h
- hiredis.c
- hiredis.h
- hiredis_ssl.h
- Makefile
- net.c
- net.h
- read.c
- read.h
- README.md
- sds.c
- sds.h
- sdsalloc.h
- sockcompat.c
- sockcompat.h
- ssl.c
- test.c
- win32.h
- .gitignore
- CONTRIBUTIONS
- http_parser.c
- http_parser.h
- LICENSE-MIT
- README.md
- dump.c
- error.c
- hashtable.c
- hashtable.h
- hashtable_seed.c
- jansson.h
- jansson_config.h
- jansson_config.h.win32
- jansson_private.h
- jansson_private_config.h
- load.c
- lookup3.h
- memory.c
- pack_unpack.c
- strbuffer.c
- strbuffer.h
- strconv.c
- utf.c
- utf.h
- value.c
- CHANGES
- LICENSE
- README.rst
- WEBDIS-CHANGES.md
- md5.c
- md5.h
- sha1.c
- sha1.h
- acl.c
- acl.h
- client.c
- client.h
- cmd.c
- cmd.h
- conf.c
- conf.h
- http.c
- http.h
- pool.c
- pool.h
- server.c
- server.h
- slog.c
- slog.h
- version.h
- webdis.c
- websocket.c
- websocket.h
- worker.c
- worker.h
- basic.py
- bench.sh
- curl-tests.sh
- limits.py
- Makefile
- pubsub.c
- README.tests
- requirements.txt
- websocket.c
- websocket.html
- ws-tests.py
- .gitignore
- COPYING
- Dockerfile
- Makefile
- nicolasff.pub
- README.md
- webdis.json
- webdis.prod.json
- webdis.pub
# Installation Guide
1. Get the code
git clone https://github.com/nicolasff/webdis
Downloads the entire project code from GitHub to your computer.
cd webdis
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 run --name webdis-test --rm -d -p 127.0.0.1:7379:7379 nicolas/webdis
Runs the built image as an actual container.
$ docker stop webdis-test
Type this command into your terminal and run it.
$ docker pull nicolas/webdis:0.1.25
Type this command into your terminal and run it.
$ docker pull nicolas/webdis:latest
Type this command into your terminal and run it.
$ docker pull public.ecr.aws/nicolas/webdis:0.1.25
Type this command into your terminal and run it.
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. 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)
