lab2023 - internet teknolojileri

Octopress Nasıl Kullanılır?

Belli bir süre Octopress’i mercek altına alacağız.

Yeni post yazma

1
rake new_post["title"]

source brancheında _post dizininde yeni dosyayı görüyoruz. Buradan author, categories’i düzenliyoruz.

1
2
3
4
5
6
7
8
---
layout: post
title: "Octopress nasıl kullanılır?"
date: 2013-02-24 13:13
comments: true
author: Onur Özgür ÖZKAN
categories: octopress
---

Sonra markdown stadanartında makalemizi yazıyoruz.

Generate ve Preview işlemleri

1
2
3
rake generate   # Generates posts and pages into the public directory
rake watch      # Watches source/ and sass/ for changes and regenerates
rake preview    # Watches, and mounts a webserver at http://localhost:4000

Deploy etmeyi unutmayın

Publish için

1
2
rake generate
rake deploy

Source kodlarıda source branchına gönderiyoruz.

1
2
3
git add .
git commit -m 'your message'
git push origin source

Şimdilik bu kadar…