Tüm Rehberler
Git ve GitHub Kurulumu
Git versiyon kontrol sistemini kurun ve GitHub ile projeleri yönetin.
Başlangıç15 dk
Kurulum Adımları
1. Git'i kurun:
sudo apt install git -y2. Git yapılandırması:
git config --global user.name "Adınız"
git config --global user.email "email@ornek.com"3. Yeni repository oluşturun:
mkdir proje && cd proje
git init4. Temel Git komutları:
git add .
git commit -m "İlk commit"
git status
git log --oneline5. GitHub'da repository oluşturun (github.com/new)
6. Remote ekleyin ve push yapın:
git remote add origin https://github.com/kullanici/proje.git
git branch -M main
git push -u origin main7. SSH key ile bağlanma:
ssh-keygen -t ed25519 -C "email@ornek.com"
cat ~/.ssh/id_ed25519.pub8. Kopyaladığınız anahtarı GitHub > Settings > SSH Keys'e ekleyin
9. Branch yönetimi:
git checkout -b yeni-ozellik
git merge yeni-ozellik
git branch -d yeni-ozellik10. .gitignore dosyası oluşturun:
node_modules/
.env
.DS_Store
dist/İlgili Rehberler
VS Code Kurulumu ve Eklentiler
Visual Studio Code editörünü kurun ve geliştirici eklentileriyle güçlendirin.
PM2 ile Node.js Uygulama Yönetimi
PM2 process manager ile Node.js uygulamalarınızı production'da yönetin.
GitHub Actions CI/CD Kurulumu
GitHub Actions ile otomatik test, build ve deploy pipeline'ı oluşturun.
Cloudflare DNS ve CDN Kurulumu
Cloudflare'i sitenize ekleyin. DNS yönetimi, CDN, DDoS koruması ve SSL.