Files
Baradb/docs/tr/installation.md
T

62 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# BaraDB - Kurulum Rehberi
## Gereksinimler
- **Nim Derleyici** >= 2.2.0
- **OpenSSL** geliştirme başlıkları (TLS desteği için)
- **İşletim Sistemi**: Linux, macOS, Windows
### Desteklenen Platformlar
| OS | Mimari | Durum |
|----|--------|-------|
| Linux | x86_64 | ✅ Tam destek |
| Linux | ARM64 | ✅ Tam destek |
| macOS | x86_64 | ✅ Tam destek |
| macOS | ARM64 (Apple Silicon) | ✅ Tam destek |
| Windows | x86_64 | ✅ Destekleniyor |
| FreeBSD | x86_64 | 🟡 Topluluk testli |
## Nim Kurulumu
### Linux
```bash
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
```
### macOS
```bash
brew install nim
```
### Windows
```powershell
winget install nim
```
## BaraDB Derleme
```bash
git clone https://github.com/katehonz/barabaDB.git
cd barabaDB
nimble install -d -y
nim c -d:ssl -d:release --opt:speed -o:build/baradadb src/baradadb.nim
```
## İlk Çalıştırma
```bash
./build/baradadb
curl http://localhost:9470/health
./build/baradadb --shell
```
## Sonraki Adımlar
- [Hızlı Başlangıç](quickstart.md)
- [Yapılandırma Referansı](configuration.md)
- [Mimari Genel Bakış](architecture.md)
- [BaraQL Sorgu Dili](baraql.md)