ItsRoy69 / install.surrealdb.com

The script for installing SurrealDB on unix operating systems

Home Page:https://install.surrealdb.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

install.surrealdb.com

SurrealDB is designed to be simple to install and simple to run - using just one command from your terminal. In addition to traditional installation, SurrealDB can be installed and run with HomeBrew, Docker, or using any other container orchestration tool such as Docker Compose, Docker Swarm, Rancher, or in Kubernetes. Visit the SurrealDB install page for more information.

This repository houses the install script located at install.surrealdb.com. It installs the SurrealDB command-line tools and database server, automatically detecting the host operating platform, and cpu architecture type - then downloads the latest binary for the relevant platform.

If you prefer not using a package manager or Docker, then the easiest and preferred way to get going with SurrealDB is to run one of the following commands in your terminal.

Latest release

  1. Download the SurrealDB installation package by executing the following command in your terminal or command prompt:

Install on Windows

curl -O https://install.surrealdb.com/surreal-v1.3.1-windows-amd64.tar.gz
  1. After downloading the package, locate the downloaded ZIP folder and unzip it manually, or extract its contents using the following command:
tar -xf surreal-v1.3.1-windows-amd64.tar.gz

Install on macOS / Unix / Linux

curl --proto '=https' --tlsv1.2 -sSf https://install.surrealdb.com | sh

Beta release

Install on macOS / Unix / Linux

curl --proto '=https' --tlsv1.2 -sSf https://install.surrealdb.com | sh -s -- --beta

Nightly release

Install on macOS / Unix / Linux

curl --proto '=https' --tlsv1.2 -sSf https://install.surrealdb.com | sh -s -- --nightly

About

The script for installing SurrealDB on unix operating systems

https://install.surrealdb.com

License:Apache License 2.0


Languages

Language:Shell 87.8%Language:Makefile 8.5%Language:JavaScript 3.8%