https://github.com/surrealdb/windows.surrealdb.com
The script for installing SurrealDB on windows operating systems
https://github.com/surrealdb/windows.surrealdb.com
database nosql serverless surreal surrealdb
Last synced: 4 months ago
JSON representation
The script for installing SurrealDB on windows operating systems
- Host: GitHub
- URL: https://github.com/surrealdb/windows.surrealdb.com
- Owner: surrealdb
- License: apache-2.0
- Created: 2022-08-02T00:44:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T21:12:09.000Z (7 months ago)
- Last Synced: 2025-06-30T07:19:05.997Z (4 months ago)
- Topics: database, nosql, serverless, surreal, surrealdb
- Language: PowerShell
- Homepage: https://windows.surrealdb.com
- Size: 19.5 KB
- Stars: 13
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# windows.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](https://surrealdb.com/install) for more information.
This repository houses the install script located at [windows.surrealdb.com](https://windows.surrealdb.com). It installs the SurrealDB command-line tools and database server, automatically detecting the host operating platform, and cpu architecture type, and downloading 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.
To install SurrealDB on Unix operating systems follow the instructions in the [install.surrealdb.com](https://github.com/surrealdb/install.surrealdb.com) repository.
To install SurrealDB on macOS using Homebrew folow the instructions in the [homebrew-tap](https://github.com/surrealdb/homebrew-tap) repository.
#### Install on Windows
```bash
iwr https://windows.surrealdb.com -useb | iex
```#### Install nightly on Windows
```bash
iex "& { $(irm https://windows.surrealdb.com) } -Nightly"
```