nocobase/docs/tr-TR/welcome/getting-started/upgrading/git-clone.md
altaytahsin ad4929e48b
Turkish language created for Docs. Belgeler için türkçe dil desteği (#1071)
* Turkish language created for Docs. Belgeler için türkçe dil desteği oluşturuldu.

* Turkish docs fix
2022-12-23 09:42:44 +08:00

45 lines
492 B
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.

# Git kaynak kodundan güncelleme
## 1. NocoBase Proje klasörüne girin
```bash
cd my-nocobase-app
```
## 2. En son kodu çekin
```bash
git pull
```
## 3. Bağımlılıkları güncelle
```bash
yarn install
```
## 4. Güncelleme komutunu çalıştırın
```bash
yarn nocobase upgrade
```
## 5. NocoBase Başlatın
geliştirme ortamı
```bash
yarn dev
```
Ürün yayınlama ortamı
```bash
# Derle
yarn build
# Başlat
yarn start # windows platformunda çalışmamaktadır.
```