diff --git a/_index.md b/_index.md deleted file mode 100644 index 78f8c2ca..00000000 --- a/_index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Redis -linkTitle: Redis ---- - -Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes, and streams. Redis has built-in replication, Lua scripting, LRU eviction, transactions, and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster. [Learn more →](topics/introduction.md) diff --git a/netlify.bash b/netlify.bash deleted file mode 100644 index b677dcd6..00000000 --- a/netlify.bash +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# Prepares the Netlify preview -: ${REDIS_STACK_REPOSITORY:="github.com/redis-stack/redis-stack-website"} -if [[ -n $PRIVATE_ACCESS_TOKEN ]]; then - REDIS_STACK_REPOSITORY="$PRIVATE_ACCESS_TOKEN@$REDIS_STACK_REPOSITORY" -fi -repo_dir=$(pwd) - -rm -rf website -git clone --recurse-submodules https://$REDIS_STACK_REPOSITORY website -cd website -REPO_DIR=$repo_dir REPOSITORY_URL=$REPOSITORY_URL PREVIEW_MODE=1 make deps netlify